2025-06-25 22:37:24 +09:00

15 lines
304 B
Rust

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