cargo/tests/tests.rs
2014-04-02 13:22:45 -07:00

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;