c392cb5e4b
* Mutant is ruby 2.0+ only where UTF-8 is default encoding
11 lines
265 B
Ruby
11 lines
265 B
Ruby
Mutant::Meta::Example.add do
|
|
source '"foo#{bar}baz"'
|
|
|
|
singleton_mutations
|
|
mutation '"#{nil}#{bar}baz"'
|
|
mutation '"#{self}#{bar}baz"'
|
|
mutation '"foo#{bar}#{nil}"'
|
|
mutation '"foo#{bar}#{self}"'
|
|
mutation '"foo#{nil}baz"'
|
|
mutation '"foo#{self}baz"'
|
|
end
|