name: Mutation Testing Improvement about: Track improvements to mutation test coverage title: '[Mutation] ' labels: 'mutation-testing, enhancement' assignees: ''
File: crates/cashu/src/...
Line: 123
Mutation: replace foo() with bar()
Current Status: MISSED
#[test]
fn test_() {
// Test that ensures this mutation would be caught
}
After implementing the fix:
# Run mutation test on specific file
cargo mutants --file crates/cashu/src/...
# Or run mutation test on the specific function
cargo mutants --file crates/cashu/src/... --re "function_name"
Expected result: Mutation should be CAUGHT ✅