@@ -83,7 +83,7 @@ fn simple_git_ignore_exists() {
83
83
# already existing elements were commented out\n \
84
84
\n \
85
85
#/target\n \
86
- Cargo.lock\n ",
86
+ / Cargo.lock\n ",
87
87
) ;
88
88
89
89
cargo_process ( "build" ) . cwd ( & paths:: root ( ) . join ( "foo" ) ) . run ( ) ;
@@ -105,7 +105,7 @@ fn git_ignore_exists_no_conflicting_entries() {
105
105
# Added by cargo\n \
106
106
\n \
107
107
/target\n \
108
- Cargo.lock\n ",
108
+ / Cargo.lock\n ",
109
109
) ;
110
110
}
111
111
@@ -337,7 +337,9 @@ fn git_autodetect() {
337
337
assert ! ( paths:: root( ) . join( "Cargo.toml" ) . is_file( ) ) ;
338
338
assert ! ( paths:: root( ) . join( "src/lib.rs" ) . is_file( ) ) ;
339
339
assert ! ( paths:: root( ) . join( ".git" ) . is_dir( ) ) ;
340
- assert ! ( paths:: root( ) . join( ".gitignore" ) . is_file( ) ) ;
340
+ let path = paths:: root ( ) . join ( ".gitignore" ) ;
341
+ assert ! ( paths:: root( ) . join( & path) . is_file( ) ) ;
342
+ assert_eq ! ( fs:: read_to_string( & path) . unwrap( ) , "/target\n /Cargo.lock\n " , ) ;
341
343
}
342
344
343
345
#[ cargo_test]
@@ -349,7 +351,45 @@ fn mercurial_autodetect() {
349
351
assert ! ( paths:: root( ) . join( "Cargo.toml" ) . is_file( ) ) ;
350
352
assert ! ( paths:: root( ) . join( "src/lib.rs" ) . is_file( ) ) ;
351
353
assert ! ( !paths:: root( ) . join( ".git" ) . is_dir( ) ) ;
352
- assert ! ( paths:: root( ) . join( ".hgignore" ) . is_file( ) ) ;
354
+ let path = paths:: root ( ) . join ( ".hgignore" ) ;
355
+ assert ! ( paths:: root( ) . join( & path) . is_file( ) ) ;
356
+ assert_eq ! (
357
+ fs:: read_to_string( & path) . unwrap( ) ,
358
+ "^target/\n ^Cargo.lock$\n " ,
359
+ ) ;
360
+ }
361
+
362
+ #[ cargo_test]
363
+ fn fossil_autodetect ( ) {
364
+ fs:: create_dir ( & paths:: root ( ) . join ( ".fossil" ) ) . unwrap ( ) ;
365
+
366
+ cargo_process ( "init --lib" ) . run ( ) ;
367
+
368
+ assert ! ( paths:: root( ) . join( "Cargo.toml" ) . is_file( ) ) ;
369
+ assert ! ( paths:: root( ) . join( "src/lib.rs" ) . is_file( ) ) ;
370
+ assert ! ( !paths:: root( ) . join( ".git" ) . is_dir( ) ) ;
371
+ for path in [
372
+ ".fossil-settings/ignore-glob" ,
373
+ ".fossil-settings/clean-glob" ,
374
+ ] {
375
+ let path = paths:: root ( ) . join ( path) ;
376
+ assert ! ( paths:: root( ) . join( & path) . is_file( ) ) ;
377
+ assert_eq ! ( fs:: read_to_string( & path) . unwrap( ) , "target\n Cargo.lock\n " , ) ;
378
+ }
379
+ }
380
+
381
+ #[ cargo_test]
382
+ fn pijul_autodetect ( ) {
383
+ fs:: create_dir ( & paths:: root ( ) . join ( ".pijul" ) ) . unwrap ( ) ;
384
+
385
+ cargo_process ( "init --lib" ) . run ( ) ;
386
+
387
+ assert ! ( paths:: root( ) . join( "Cargo.toml" ) . is_file( ) ) ;
388
+ assert ! ( paths:: root( ) . join( "src/lib.rs" ) . is_file( ) ) ;
389
+ assert ! ( !paths:: root( ) . join( ".git" ) . is_dir( ) ) ;
390
+ let path = paths:: root ( ) . join ( ".ignore" ) ;
391
+ assert ! ( paths:: root( ) . join( & path) . is_file( ) ) ;
392
+ assert_eq ! ( fs:: read_to_string( & path) . unwrap( ) , "/target\n /Cargo.lock\n " , ) ;
353
393
}
354
394
355
395
#[ cargo_test]
0 commit comments