Skip to content

Commit 46c2b76

Browse files
committed
mutants test stitch.rs
1 parent a133073 commit 46c2b76

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.cargo/mutants.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
# Controls tests with `cargo mutants`
22

33
# Skip some relatively unimportant functions and traits for now.
4-
exclude_re = ["<impl Display"]
4+
exclude_re = [
5+
"<impl Display",
6+
# spins forever returning empty vecs
7+
"replace <impl Iterator for IterStitchedIndexHunks>::next -> Option<Self::Item> with Some\\(Default::default\\(\\)\\)",
8+
]
59

610
# Include only files that are currently well-tested.
711
examine_globs = [
@@ -14,6 +18,7 @@ examine_globs = [
1418
"src/counters.rs",
1519
"src/jsonio.rs",
1620
"src/restore.rs",
21+
"src/stitch.rs",
1722
"src/transport.rs",
1823
"src/transport/local.rs",
1924
]

0 commit comments

Comments
 (0)