mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-28 11:20:36 +00:00
14 lines
349 B
Rust
14 lines
349 B
Rust
use cargo_test_support::curr_dir;
|
|
use cargo_test_support::prelude::*;
|
|
|
|
#[cargo_test]
|
|
fn case() {
|
|
snapbox::cmd::Command::cargo_ui()
|
|
.arg("git-checkout")
|
|
.arg("--help")
|
|
.assert()
|
|
.success()
|
|
.stdout_matches_path(curr_dir!().join("stdout.log"))
|
|
.stderr_matches_path(curr_dir!().join("stderr.log"));
|
|
}
|