blob: 48c84da1b47ff87976704ca8dac9b5c4f9c0e79a [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()
.arg("uninstall")
.arg("--help")
.assert()
.success()
.stdout_eq(file!["stdout.term.svg"])
.stderr_eq(str![""]);
}