Skip to content

Commit e101b92

Browse files
author
boats
committed
Remove tests related to stripping names.
1 parent 3e7c75a commit e101b92

File tree

1 file changed

+1
-32
lines changed

1 file changed

+1
-32
lines changed

tests/new.rs

+1-32
Original file line numberDiff line numberDiff line change
@@ -163,37 +163,6 @@ fn keyword_name() {
163163
use --name to override crate name"));
164164
}
165165

166-
#[test]
167-
fn rust_prefix_stripped() {
168-
assert_that(cargo_process("new").arg("--lib").arg("rust-foo").env("USER", "foo"),
169-
execs().with_status(0)
170-
.with_stderr_contains("note: package will be named `foo`; use --name to override"));
171-
let toml = paths::root().join("rust-foo/Cargo.toml");
172-
let mut contents = String::new();
173-
File::open(&toml).unwrap().read_to_string(&mut contents).unwrap();
174-
assert!(contents.contains(r#"name = "foo""#));
175-
}
176-
177-
#[test]
178-
fn bin_disables_stripping() {
179-
assert_that(cargo_process("new").arg("rust-foo").arg("--bin").env("USER", "foo"),
180-
execs().with_status(0));
181-
let toml = paths::root().join("rust-foo/Cargo.toml");
182-
let mut contents = String::new();
183-
File::open(&toml).unwrap().read_to_string(&mut contents).unwrap();
184-
assert!(contents.contains(r#"name = "rust-foo""#));
185-
}
186-
187-
#[test]
188-
fn explicit_name_not_stripped() {
189-
assert_that(cargo_process("new").arg("foo").arg("--name").arg("rust-bar").env("USER", "foo"),
190-
execs().with_status(0));
191-
let toml = paths::root().join("foo/Cargo.toml");
192-
let mut contents = String::new();
193-
File::open(&toml).unwrap().read_to_string(&mut contents).unwrap();
194-
assert!(contents.contains(r#"name = "rust-bar""#));
195-
}
196-
197166
#[test]
198167
fn finds_author_user() {
199168
create_empty_gitconfig();
@@ -423,4 +392,4 @@ fn explicit_invalid_name_not_suggested() {
423392
execs().with_status(101)
424393
.with_stderr("\
425394
[ERROR] Package names starting with a digit cannot be used as a crate name"));
426-
}
395+
}

0 commit comments

Comments
 (0)