blob: cca503d70d9269cba864984c397cc4d41c8e60be [file] [log] [blame]
use cargo_test_support::curr_dir;
use cargo_test_support::prelude::*;
#[cargo_test]
fn case() {
snapbox::cmd::Command::cargo_ui()
.masquerade_as_nightly_cargo(&["-Z help"])
.args(["-Z", "help"])
.assert()
.success()
.stdout_matches_path(curr_dir!().join("stdout.log"))
.stderr_matches_path(curr_dir!().join("stderr.log"));
}