4a9ab9340e
The mutation examples are now introspectable, this allows to render nice index or performing better automated analysis against the corpus.
12 lines
207 B
Ruby
12 lines
207 B
Ruby
# encoding: utf-8
|
|
|
|
Mutant::Meta::Example.add do
|
|
source 'a ||= 1'
|
|
|
|
mutation 'a__mutant__ ||= 1'
|
|
mutation 'a ||= nil'
|
|
mutation 'a ||= 0'
|
|
mutation 'a ||= -1'
|
|
mutation 'a ||= 2'
|
|
mutation 'nil'
|
|
end
|