cargo/tests/testsuite/fetch.rs

22 lines
485 B
Rust

use cargotest::support::{project, execs};
use hamcrest::assert_that;
#[test]
fn 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", "")
.build();
assert_that(p.cargo("fetch"),
execs().with_status(0).with_stdout(""));
}