blob: 8e45f699803c1e43f206a71a762de83c72c40867 [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("config")
.arg("--help")
.assert()
.success()
.stdout_matches(file!["stdout.term.svg"])
.stderr_matches(str![""]);
}