free_mutant/meta/regex.rb
Markus Schirp 017ccc1044 Add expression => self mutation
Also reorganizes parts of meta to align filenames to node name better.

Closes #191
2014-06-05 17:48:39 +00:00

22 lines
436 B
Ruby

# encoding: utf-8
Mutant::Meta::Example.add do
source '/foo/'
singleton_mutations
mutation '//' # match all
mutation '/a\A/' # match nothing
end
Mutant::Meta::Example.add do
source '/#{foo.bar}n/'
singleton_mutations
mutation '//' # match all
mutation '/#{foo}n/'
mutation '/a\A/' # match nothing
mutation '/#{nil.bar}n/'
mutation '/#{self.bar}n/'
mutation '/#{nil}n/'
mutation '/#{self}n/'
end