From e101b92d7a11e2d944f9941344b49576c7f714f7 Mon Sep 17 00:00:00 2001 From: boats Date: Mon, 5 Feb 2018 15:49:49 -0800 Subject: [PATCH] Remove tests related to stripping names. --- tests/new.rs | 33 +-------------------------------- 1 file changed, 1 insertion(+), 32 deletions(-) diff --git a/tests/new.rs b/tests/new.rs index d5bfb517e..46def76c0 100644 --- a/tests/new.rs +++ b/tests/new.rs @@ -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 +} -- 2.30.2