![Markus Schirp](/assets/img/avatar_default.png)
The mutation examples are now introspectable, this allows to render nice index or performing better automated analysis against the corpus.
9 lines
206 B
Ruby
9 lines
206 B
Ruby
# encoding: utf-8
|
|
|
|
Mutant::Meta::Example.add do
|
|
source 'begin; rescue; ensure; true; end'
|
|
|
|
mutation 'begin; rescue; ensure; false; end'
|
|
mutation 'begin; rescue; ensure; nil; end'
|
|
mutation 'nil'
|
|
end
|