cargo/tests/tests.rs

42 lines
812 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;
extern crate url;
#[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;
mod test_cargo_bench;
2014-07-07 08:50:05 +00:00
mod test_cargo_clean;
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-06-26 22:14:31 +00:00
mod test_cargo_test;
2014-05-28 01:33:06 +00:00
mod test_shell;
mod test_cargo_cross_compile;
mod test_cargo_run;
2014-07-17 20:00:58 +00:00
mod test_cargo_version;
mod test_cargo_new;
mod test_cargo_compile_plugins;
2014-07-22 15:06:36 +00:00
mod test_cargo_doc;
mod test_cargo_freshness;
mod test_cargo_generate_lockfile;
mod test_cargo_profiles;
mod test_cargo_package;