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