diff options
Diffstat (limited to 'tests/testsuite/init/no_filename/mod.rs')
-rw-r--r-- | tests/testsuite/init/no_filename/mod.rs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/testsuite/init/no_filename/mod.rs b/tests/testsuite/init/no_filename/mod.rs new file mode 100644 index 0000000..8edfd28 --- /dev/null +++ b/tests/testsuite/init/no_filename/mod.rs @@ -0,0 +1,16 @@ +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")); +} |