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