mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-25 11:14:46 +00:00
26 lines
705 B
Rust
26 lines
705 B
Rust
use crate::prelude::*;
|
|
use cargo_test_support::compare::assert_ui;
|
|
use cargo_test_support::current_dir;
|
|
use cargo_test_support::file;
|
|
use cargo_test_support::str;
|
|
use cargo_test_support::Project;
|
|
|
|
#[cargo_test]
|
|
fn case() {
|
|
cargo_test_support::registry::init();
|
|
let project = Project::from_template(current_dir!().join("in"));
|
|
let project_root = project.root();
|
|
let cwd = &project_root;
|
|
|
|
snapbox::cmd::Command::cargo_ui()
|
|
.arg("add")
|
|
.arg_line("@1.2.3")
|
|
.current_dir(cwd)
|
|
.assert()
|
|
.failure()
|
|
.stdout_eq(str![""])
|
|
.stderr_eq(file!["stderr.term.svg"]);
|
|
|
|
assert_ui().subset_matches(current_dir!().join("out"), &project_root);
|
|
}
|