blob: 05e91b81bfd5aa8d21c18cb7408348c2ee254f27 [file] [log] [blame]
use cargo_test_support::file;
use cargo_test_support::prelude::*;
use cargo_test_support::str;
#[cargo_test]
fn case() {
snapbox::cmd::Command::cargo_ui()
.masquerade_as_nightly_cargo(&["-Z help"])
.args(["-Z", "help"])
.assert()
.success()
.stdout_matches(file!["stdout.term.svg"])
.stderr_matches(str![""]);
}