@@ -8,6 +8,16 @@ use hamcrest::assert_that;
8
8
9
9
#[ test]
10
10
fn oldest_lockfile_still_works ( ) {
11
+ let cargo_commands = vec ! [
12
+ "build" ,
13
+ "update"
14
+ ] ;
15
+ for cargo_command in cargo_commands {
16
+ oldest_lockfile_still_works_with_command ( cargo_command) ;
17
+ }
18
+ }
19
+
20
+ fn oldest_lockfile_still_works_with_command ( cargo_command : & str ) {
11
21
Package :: new ( "foo" , "0.1.0" ) . publish ( ) ;
12
22
13
23
let expected_lockfile =
@@ -53,24 +63,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
53
63
"# )
54
64
. file ( "src/lib.rs" , "" )
55
65
. file ( "Cargo.lock" , old_lockfile) ;
56
- p. build ( ) ;
57
-
58
- let cargo_commands = vec ! [
59
- "build" ,
60
- "update"
61
- ] ;
62
66
63
- for cargo_command in cargo_commands {
64
- assert_that ( p. cargo ( cargo_command) ,
65
- execs ( ) . with_status ( 0 ) ) ;
67
+ p. build ( ) ;
66
68
67
- let lock = p. read_lockfile ( ) ;
68
- for ( l, r) in expected_lockfile. lines ( ) . zip ( lock. lines ( ) ) {
69
- assert ! ( lines_match( l, r) , "Lines differ:\n {}\n \n {}" , l, r) ;
70
- }
69
+ assert_that ( p. cargo ( cargo_command) ,
70
+ execs ( ) . with_status ( 0 ) ) ;
71
71
72
- assert_eq ! ( lock. lines( ) . count( ) , expected_lockfile. lines( ) . count( ) ) ;
72
+ let lock = p. read_lockfile ( ) ;
73
+ for ( l, r) in expected_lockfile. lines ( ) . zip ( lock. lines ( ) ) {
74
+ assert ! ( lines_match( l, r) , "Lines differ:\n {}\n \n {}" , l, r) ;
73
75
}
76
+
77
+ assert_eq ! ( lock. lines( ) . count( ) , expected_lockfile. lines( ) . count( ) ) ;
74
78
}
75
79
76
80
#[ test]
0 commit comments