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