mutant v0.10.25 Release Notes

Release Date: 2021-01-03 // over 3 years ago
    • #1198

      • Fix configured match expression loading to properly display error messages on invalid expression syntax.
    • #1192

      • Add mutations from predicate-like methods (methods ending in ?) to true/false
        • a.b? -> false
        • a.b? -> true
    • #1186

    Add additional * -> + regexp quantifier mutations:

    • /a*?/ -> /a+?/
    • /a*+/ -> /a++/

    Add a === b -> a.is_a?(b) mutation

    • #1189

      • Add mutation from =~ -> #match?
      • Add mutation from #match -> #match?