blob: cc65fd0a18354fc9940cc61f465d529ae53c6f49 [file] [log] [blame]
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());
}