blob: cc65fd0a18354fc9940cc61f465d529ae53c6f49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
use cargo_test_support::paths;
use cargo_test_support::prelude::*;
use std::fs;
use cargo_test_support::curr_dir;
#[cargo_test]
fn case() {
let project_root = &paths::root().join("test");
fs::create_dir_all(project_root).unwrap();
snapbox::cmd::Command::cargo_ui()
.arg_line("init")
.current_dir(project_root)
.assert()
.code(101)
.stdout_matches_path(curr_dir!().join("stdout.log"))
.stderr_matches_path(curr_dir!().join("stderr.log"));
assert!(!project_root.join("Cargo.toml").is_file());
}
|