free_mutant/meta/match_current_line.rb
2016-03-22 01:01:21 +00:00

13 lines
308 B
Ruby

Mutant::Meta::Example.add :match_current_line do
source 'true if /foo/'
singleton_mutations
mutation 'false if /foo/'
mutation 'true if //'
mutation 'nil if /foo/'
mutation 'true if true'
mutation 'true if false'
mutation 'true if nil'
mutation 'true if /nomatch\A/'
mutation 'true'
end