Skip to content

Commit cab464e

Browse files
committed
Updated old lockfile tests
1 parent 639bfb5 commit cab464e

File tree

1 file changed

+18
-14
lines changed

1 file changed

+18
-14
lines changed

tests/lockfile-compat.rs

+18-14
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,16 @@ use hamcrest::assert_that;
88

99
#[test]
1010
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) {
1121
Package::new("foo", "0.1.0").publish();
1222

1323
let expected_lockfile =
@@ -53,24 +63,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
5363
"#)
5464
.file("src/lib.rs", "")
5565
.file("Cargo.lock", old_lockfile);
56-
p.build();
57-
58-
let cargo_commands = vec![
59-
"build",
60-
"update"
61-
];
6266

63-
for cargo_command in cargo_commands {
64-
assert_that(p.cargo(cargo_command),
65-
execs().with_status(0));
67+
p.build();
6668

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));
7171

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);
7375
}
76+
77+
assert_eq!(lock.lines().count(), expected_lockfile.lines().count());
7478
}
7579

7680
#[test]

0 commit comments

Comments
 (0)