2024-02-20 13:05:16 -06:00

15 lines
322 B
Rust

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("add")
.arg("--help")
.assert()
.success()
.stdout_matches(file!["stdout.log"])
.stderr_matches(str![""]);
}