summaryrefslogtreecommitdiffstats
path: root/src/tools/cargo/tests/testsuite/init/cant_create_library_when_both_binlib_present/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/cargo/tests/testsuite/init/cant_create_library_when_both_binlib_present/mod.rs')
-rw-r--r--src/tools/cargo/tests/testsuite/init/cant_create_library_when_both_binlib_present/mod.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/tools/cargo/tests/testsuite/init/cant_create_library_when_both_binlib_present/mod.rs b/src/tools/cargo/tests/testsuite/init/cant_create_library_when_both_binlib_present/mod.rs
deleted file mode 100644
index 5e9e1b94c..000000000
--- a/src/tools/cargo/tests/testsuite/init/cant_create_library_when_both_binlib_present/mod.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-use cargo_test_support::prelude::*;
-use cargo_test_support::Project;
-
-use cargo_test_support::curr_dir;
-
-#[cargo_test]
-fn case() {
- let project = Project::from_template(curr_dir!().join("in"));
- let project_root = &project.root();
-
- snapbox::cmd::Command::cargo_ui()
- .arg_line("init --lib")
- .current_dir(project_root)
- .assert()
- .code(101)
- .stdout_matches_path(curr_dir!().join("stdout.log"))
- .stderr_matches_path(curr_dir!().join("stderr.log"));
-}