blob: 8f6c9bab141467f3f36c7cc11019d89f2efe956b [file] [log] [blame]
use cargo_test_support::curr_dir;
use cargo_test_support::prelude::*;
#[cargo_test]
fn case() {
snapbox::cmd::Command::cargo_ui()
.arg("verify-project")
.arg("--help")
.assert()
.success()
.stdout_matches_path(curr_dir!().join("stdout.log"))
.stderr_matches_path(curr_dir!().join("stderr.log"));
}