mirror of
https://github.com/rust-lang/cargo.git
synced 2025-10-01 11:30:39 +00:00
16 lines
400 B
Rust
16 lines
400 B
Rust
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"));
|
|
}
|