]> git.proxmox.com Git - cargo.git/commitdiff
Remove tests related to stripping names.
authorboats <boats@mozilla.com>
Mon, 5 Feb 2018 23:49:49 +0000 (15:49 -0800)
committerboats <boats@mozilla.com>
Mon, 5 Feb 2018 23:49:49 +0000 (15:49 -0800)
tests/new.rs

index d5bfb517e37a1d6556d06758580b20c1484b6d4e..46def76c08aa8aec2e6d463a788d2209de38810e 100644 (file)
@@ -163,37 +163,6 @@ fn keyword_name() {
 use --name to override crate name"));
 }
 
-#[test]
-fn rust_prefix_stripped() {
-    assert_that(cargo_process("new").arg("--lib").arg("rust-foo").env("USER", "foo"),
-                execs().with_status(0)
-                       .with_stderr_contains("note: package will be named `foo`; use --name to override"));
-    let toml = paths::root().join("rust-foo/Cargo.toml");
-    let mut contents = String::new();
-    File::open(&toml).unwrap().read_to_string(&mut contents).unwrap();
-    assert!(contents.contains(r#"name = "foo""#));
-}
-
-#[test]
-fn bin_disables_stripping() {
-    assert_that(cargo_process("new").arg("rust-foo").arg("--bin").env("USER", "foo"),
-                execs().with_status(0));
-    let toml = paths::root().join("rust-foo/Cargo.toml");
-    let mut contents = String::new();
-    File::open(&toml).unwrap().read_to_string(&mut contents).unwrap();
-    assert!(contents.contains(r#"name = "rust-foo""#));
-}
-
-#[test]
-fn explicit_name_not_stripped() {
-    assert_that(cargo_process("new").arg("foo").arg("--name").arg("rust-bar").env("USER", "foo"),
-                execs().with_status(0));
-    let toml = paths::root().join("foo/Cargo.toml");
-    let mut contents = String::new();
-    File::open(&toml).unwrap().read_to_string(&mut contents).unwrap();
-    assert!(contents.contains(r#"name = "rust-bar""#));
-}
-
 #[test]
 fn finds_author_user() {
     create_empty_gitconfig();
@@ -423,4 +392,4 @@ fn explicit_invalid_name_not_suggested() {
                 execs().with_status(101)
                        .with_stderr("\
 [ERROR] Package names starting with a digit cannot be used as a crate name"));
-}
\ No newline at end of file
+}