c5f5d595ca
* Add detection for this case in Example::Verification * Revert source location killing Normalization after parse. * Closes #198
25 lines
462 B
Ruby
25 lines
462 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
|
|
|
|
# encoding: utf-8
|
|
|
|
Mutant::Meta::Example.add do
|
|
|
|
source s(:begin, s(:true))
|
|
# Mutation of each statement in block
|
|
mutation s(:begin, s(:false))
|
|
mutation s(:begin, s(:nil))
|
|
end
|