blob: f5db7e12bb732e936ae25c8b7e80b9726c2c1d22 [file] [log] [blame] [edit]
use cargo_test_support::file;
use cargo_test_support::prelude::*;
use cargo_test_support::str;
#[cargo_test]
fn case() {
snapbox::cmd::Command::cargo_ui()
.arg("help")
.arg("--help")
.assert()
.success()
.stdout_eq(file!["stdout.term.svg"])
.stderr_eq(str![""]);
}