017ccc1044
Also reorganizes parts of meta to align filenames to node name better. Closes #191
13 lines
284 B
Ruby
13 lines
284 B
Ruby
# encoding: utf-8
|
|
|
|
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
|