summaryrefslogtreecommitdiffstats
path: root/src/tools/cargo/tests/testsuite/init/unknown_flags/mod.rs
blob: 4289b4b9ec9130b71510af8a47fbbe2c10101bfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use cargo_test_support::paths;
use cargo_test_support::prelude::*;

use cargo_test_support::curr_dir;

#[cargo_test]
fn case() {
    snapbox::cmd::Command::cargo_ui()
        .arg_line("init foo --flag")
        .current_dir(paths::root())
        .assert()
        .code(1)
        .stdout_matches_path(curr_dir!().join("stdout.log"))
        .stderr_matches_path(curr_dir!().join("stderr.log"));
}