summaryrefslogtreecommitdiffstats
path: root/tests/testsuite/init/no_filename/mod.rs
blob: 8edfd28231622c8b9f7a52ee21c302f1a40e7340 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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"));
}