mutant
https://github.com/mbj/mutant
Ruby
Automated code reviews via mutation testing - semantic code coverage.
Triage Issues!
When you volunteer to triage issues, you'll receive an email each day with a link to an open issue that needs help in this project. You'll also receive instructions on how to triage issues.
Triage Docs!
Receive a documented method or class from your favorite GitHub repos in your inbox every day. If you're really pro, receive undocumented methods or classes and supercharge your commit history.
7 Subscribers
Add a CodeTriage badge to mutant
Help out
- Issues
- Mutate `Integer` to something stronger
- Introduce a Style Guide
- Add mutation `foo[bar] || baz` → `foo.fetch(bar, baz)`
- Add mutation `/.+?/` → `/.+/`
- Add mutation `[foo]` → `[^foo]`
- Add mutation `/a*/` → `/a{2,}/`
- Add mutation `/a*/` → `//`
- Add mutation `/(foo|bar)/` → `/foo|bar/`
- Add mutation `/(foo)/` → `/(?>foo)/`
- Add mutation `foo, bar, baz = *qux` → `foo, bar = *qux`
- Docs
- Mutant::LogCapture.from_binary
- Mutant::Transform::Codec#load
- Mutant::Transform::Codec#dump
- Mutant::Transform::Codec.for_anima
- Mutant::AST::Pattern::Lexer#advance_positions
- Mutant::AST::Pattern::Lexer#matches?
- Mutant::AST::Pattern::Lexer#terminates_invalid?
- Mutant::AST::Pattern::Lexer#advance_invalid
- Mutant::AST::Pattern::Lexer#consume_invalid
- Mutant::AST::Pattern::Lexer#setter_suffix_follows?