cargo/tests/tests.rs
Yehuda Katz + Carl Lerche 9224a5ae61 Paths nested in paths
2014-06-17 17:05:29 -07:00

27 lines
458 B
Rust

#![feature(macro_rules)]
#![feature(phase)]
extern crate term;
extern crate cargo;
extern crate hamcrest;
#[phase(plugin, link)]
extern crate log;
mod support;
macro_rules! test(
($name:ident $expr:expr) => (
#[test]
fn $name() {
::support::paths::setup();
setup();
$expr;
}
)
)
mod test_cargo_compile;
mod test_cargo_compile_git_deps;
mod test_cargo_compile_path_deps;
mod test_shell;