free_mutant/meta/or_asgn.rb
Markus Schirp 4a9ab9340e Define expected mutations with less redundancy
The mutation examples are now introspectable, this allows to render nice
index or performing better automated analysis against the corpus.
2014-06-02 14:05:11 +00:00

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