cargo/tests/test_cargo_fetch.rs
2014-12-19 20:55:17 -08:00

22 lines
475 B
Rust

use support::{project, execs};
use hamcrest::assert_that;
fn setup() {}
test!(no_deps {
let p = project("foo")
.file("Cargo.toml", r#"
[package]
name = "foo"
authors = []
version = "0.0.1"
"#)
.file("src/main.rs", r#"
mod a; fn main() {}
"#)
.file("src/a.rs", "");
assert_that(p.cargo_process("fetch"),
execs().with_status(0).with_stdout(""));
});