cargo/tests/tests.rs
Carl Lerche + Yehuda Katz 35e21c7600 Smoke test for git support
2014-06-12 15:51:16 -07:00

26 lines
424 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_shell;