mirror of
https://github.com/rust-lang/cargo.git
synced 2025-10-01 11:30:39 +00:00
26 lines
424 B
Rust
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;
|