mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-28 11:20:36 +00:00
25 lines
679 B
Rust
25 lines
679 B
Rust
use crate::prelude::*;
|
|
use cargo_test_support::current_dir;
|
|
use cargo_test_support::file;
|
|
use cargo_test_support::Project;
|
|
|
|
#[cargo_test]
|
|
fn case() {
|
|
let project = Project::from_template(current_dir!().join("in"));
|
|
let project_root = project.root();
|
|
let cwd = &project_root;
|
|
|
|
cargo_test_support::registry::Package::new("my-package", "0.1.0+my-package")
|
|
.feature("bar", &[])
|
|
.feature("foo", &[])
|
|
.publish();
|
|
|
|
snapbox::cmd::Command::cargo_ui()
|
|
.arg("add")
|
|
.arg_line("my-package --features baz --features feo")
|
|
.current_dir(cwd)
|
|
.assert()
|
|
.failure()
|
|
.stderr_eq(file!["stderr.term.svg"]);
|
|
}
|