blob: 8edfd28231622c8b9f7a52ee21c302f1a40e7340 [file] [log] [blame]
use cargo_test_support::paths;
use cargo_test_support::prelude::*;
use cargo_test_support::curr_dir;
#[cfg(not(windows))]
#[cargo_test]
fn case() {
snapbox::cmd::Command::cargo_ui()
.arg_line("init /")
.current_dir(paths::root())
.assert()
.code(101)
.stdout_matches_path(curr_dir!().join("stdout.log"))
.stderr_matches_path(curr_dir!().join("stderr.log"));
}