mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-25 11:14:46 +00:00

RFC: https://github.com/rust-lang/rfcs/pull/3529 Tracking Issue: https://github.com/rust-lang/cargo/issues/14355 This PR adds the `--base` option to `cargo add` to allow adding a path dependency with a path base.
25 lines
717 B
Rust
25 lines
717 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();
|
|
let cwd = project_root.join("primary");
|
|
|
|
snapbox::cmd::Command::cargo_ui()
|
|
.arg("add")
|
|
.arg_line("--path dependency --base mybase")
|
|
.current_dir(&cwd)
|
|
.assert()
|
|
.code(101)
|
|
.stdout_eq(str![""])
|
|
.stderr_eq(file!["stderr.term.svg"]);
|
|
|
|
assert_ui().subset_matches(current_dir!().join("out"), &project_root);
|
|
}
|