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