mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-28 11:20:36 +00:00
23 lines
656 B
Rust
23 lines
656 B
Rust
use cargo_test_support::compare::assert_ui;
|
|
use cargo_test_support::current_dir;
|
|
use cargo_test_support::file;
|
|
use cargo_test_support::prelude::*;
|
|
use cargo_test_support::str;
|
|
use cargo_test_support::Project;
|
|
|
|
#[cargo_test]
|
|
fn case() {
|
|
let project = Project::from_template(current_dir!().join("in"));
|
|
let project_root = &project.root();
|
|
|
|
snapbox::cmd::Command::cargo_ui()
|
|
.arg_line("init --bin --vcs none")
|
|
.current_dir(project_root)
|
|
.assert()
|
|
.success()
|
|
.stdout_matches(str![""])
|
|
.stderr_matches(file!["stderr.log"]);
|
|
|
|
assert_ui().subset_matches(current_dir!().join("out"), project_root);
|
|
}
|