4a9ab9340e
The mutation examples are now introspectable, this allows to render nice index or performing better automated analysis against the corpus.
15 lines
277 B
Ruby
15 lines
277 B
Ruby
# encoding: utf-8
|
|
|
|
Mutant::Meta::Example.add do
|
|
|
|
source 'true; false'
|
|
# Mutation of each statement in block
|
|
mutation 'true; true'
|
|
mutation 'false; false'
|
|
mutation 'nil; false'
|
|
mutation 'true; nil'
|
|
|
|
# Delete each statement
|
|
mutation 'true'
|
|
mutation 'false'
|
|
end
|