2024-02-16 10:27:48 -06:00

14 lines
306 B
Rust

use cargo_test_support::file;
use cargo_test_support::prelude::*;
#[cargo_test]
fn case() {
snapbox::cmd::Command::cargo_ui()
.arg("bench")
.arg("--help")
.assert()
.success()
.stdout_matches(file!["stdout.log"])
.stderr_matches(file!["stderr.log"]);
}