cargo-mutants 27.0.0

Inject bugs and see if your tests catch them
1
2
3
4
5
6
7
use cargo_mutants_testdata_insta::say_hello;

#[test]
fn say_hello_vs_insta_snapshot() {
    let name = "Robin";
    insta::assert_snapshot!(say_hello(name), @r###"Hello, Robin!"###);
}