blob: 5e9e1b94c488f26a625a3a55630893fc4dd5bbf7 [file] [log] [blame]
use cargo_test_support::prelude::*;
use cargo_test_support::Project;
use cargo_test_support::curr_dir;
#[cargo_test]
fn case() {
let project = Project::from_template(curr_dir!().join("in"));
let project_root = &project.root();
snapbox::cmd::Command::cargo_ui()
.arg_line("init --lib")
.current_dir(project_root)
.assert()
.code(101)
.stdout_matches_path(curr_dir!().join("stdout.log"))
.stderr_matches_path(curr_dir!().join("stderr.log"));
}