-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bfb0d19
commit 9d3fcfa
Showing
14 changed files
with
71 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Cargo.toml | ||
|
||
[workspace] | ||
members = ["serde", "serde_derive"] | ||
|
||
[patch.crates-io] | ||
serde = { path = "serde" } | ||
|
9 changes: 9 additions & 0 deletions
9
tests/testsuite/cargo_remove/invalid_gc_patch/in/serde/Cargo.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# serde/Cargo.toml | ||
|
||
[package] | ||
name = "serde" | ||
version = "1.0.0" | ||
|
||
[dependencies] | ||
serde_derive = { path = "../serde_derive" } | ||
|
Empty file.
6 changes: 6 additions & 0 deletions
6
tests/testsuite/cargo_remove/invalid_gc_patch/in/serde_derive/Cargo.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# serde_derive/Cargo.toml | ||
|
||
[package] | ||
name = "serde_derive" | ||
version = "1.0.0" | ||
|
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
use cargo_test_support::compare::assert_ui; | ||
use cargo_test_support::curr_dir; | ||
use cargo_test_support::CargoCommand; | ||
use cargo_test_support::Project; | ||
|
||
#[cargo_test] | ||
fn case() { | ||
cargo_test_support::registry::init(); | ||
cargo_test_support::registry::Package::new("serde", "1.0.0").publish(); | ||
|
||
let project = Project::from_template(curr_dir!().join("in")); | ||
let project_root = project.root(); | ||
let mut test_root = project_root.clone(); | ||
test_root.push("serde"); | ||
|
||
snapbox::cmd::Command::cargo_ui() | ||
.current_dir(&test_root) | ||
.arg("remove") | ||
.args(["serde_derive"]) | ||
.assert() | ||
.code(0) | ||
.stdout_matches_path(curr_dir!().join("stdout.log")) | ||
.stderr_matches_path(curr_dir!().join("stderr.log")); | ||
|
||
assert_ui().subset_matches(curr_dir!().join("out"), &project_root); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Cargo.toml | ||
|
||
[workspace] | ||
members = ["serde", "serde_derive"] | ||
|
||
[patch.crates-io] | ||
serde = { path = "serde" } | ||
|
6 changes: 6 additions & 0 deletions
6
tests/testsuite/cargo_remove/invalid_gc_patch/out/serde/Cargo.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# serde/Cargo.toml | ||
|
||
[package] | ||
name = "serde" | ||
version = "1.0.0" | ||
|
Empty file.
6 changes: 6 additions & 0 deletions
6
tests/testsuite/cargo_remove/invalid_gc_patch/out/serde_derive/Cargo.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# serde_derive/Cargo.toml | ||
|
||
[package] | ||
name = "serde_derive" | ||
version = "1.0.0" | ||
|
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Removing serde_derive from dependencies |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters