mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-28 11:20:36 +00:00
19 lines
291 B
Rust
19 lines
291 B
Rust
#![feature(macro_rules)]
|
|
#![allow(deprecated_owned_vector)]
|
|
|
|
extern crate cargo;
|
|
extern crate hamcrest;
|
|
|
|
macro_rules! test(
|
|
($name:ident $expr:expr) => (
|
|
#[test]
|
|
fn $name() {
|
|
setup();
|
|
$expr;
|
|
}
|
|
)
|
|
)
|
|
|
|
mod support;
|
|
mod test_cargo_compile;
|