@@ -163,37 +163,6 @@ fn keyword_name() {
163
163
use --name to override crate name") ) ;
164
164
}
165
165
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
-
197
166
#[ test]
198
167
fn finds_author_user ( ) {
199
168
create_empty_gitconfig ( ) ;
@@ -423,4 +392,4 @@ fn explicit_invalid_name_not_suggested() {
423
392
execs ( ) . with_status ( 101 )
424
393
. with_stderr ( "\
425
394
[ERROR] Package names starting with a digit cannot be used as a crate name") ) ;
426
- }
395
+ }
0 commit comments