cargo/tests/tests.rs

27 lines
458 B
Rust
Raw Normal View History

2014-04-02 20:22:45 +00:00
#![feature(macro_rules)]
#![feature(phase)]
2014-05-28 01:33:06 +00:00
extern crate term;
extern crate cargo;
extern crate hamcrest;
#[phase(plugin, link)]
extern crate log;
2014-06-12 22:51:16 +00:00
mod support;
macro_rules! test(
($name:ident $expr:expr) => (
#[test]
fn $name() {
2014-06-12 22:51:16 +00:00
::support::paths::setup();
setup();
$expr;
}
)
)
mod test_cargo_compile;
2014-06-12 22:51:16 +00:00
mod test_cargo_compile_git_deps;
2014-06-18 00:05:29 +00:00
mod test_cargo_compile_path_deps;
2014-05-28 01:33:06 +00:00
mod test_shell;