free_mutant/meta/block.rb
John Backus 44bb90e4a0 Mutate arg into _foo instead of foo__mutant__
- Changes mutation `foo` -> `_foo` instead of `foo` -> `foo__mutant__`
- closes #292
2015-08-13 22:17:22 -04:00

71 lines
1.5 KiB
Ruby

Mutant::Meta::Example.add do
source 'foo { a; b }'
singleton_mutations
mutation 'foo { a }'
mutation 'foo { b }'
mutation 'foo {}'
mutation 'foo { raise }'
mutation 'foo { a; nil }'
mutation 'foo { a; self }'
mutation 'foo { nil; b }'
mutation 'foo { self; b }'
mutation 'foo'
mutation 'a; b'
end
Mutant::Meta::Example.add do
source 'foo { |a, b| }'
singleton_mutations
mutation 'foo'
mutation 'foo { |a, b| raise }'
mutation 'foo { |a, _b| }'
mutation 'foo { |_a, b| }'
mutation 'foo { |a| }'
mutation 'foo { |b| }'
mutation 'foo { || }'
end
Mutant::Meta::Example.add do
source 'foo { |(a, b), c| }'
singleton_mutations
mutation 'foo { || }'
mutation 'foo { |a, b, c| }'
mutation 'foo { |(a, b), c| raise }'
mutation 'foo { |(a), c| }'
mutation 'foo { |(b), c| }'
mutation 'foo { |(a, b)| }'
mutation 'foo { |c| }'
mutation 'foo { |(_a, b), c| }'
mutation 'foo { |(a, _b), c| }'
mutation 'foo { |(a, b), _c| }'
mutation 'foo'
end
Mutant::Meta::Example.add do
source 'foo(a, b) {}'
singleton_mutations
mutation 'foo(a, nil) {}'
mutation 'foo(nil, b) {}'
mutation 'foo(self, b) {}'
mutation 'foo(a, self) {}'
mutation 'foo(a, b)'
mutation 'foo(a, b) { raise }'
mutation 'foo(a) {}'
mutation 'foo(b) {}'
mutation 'foo {}'
end
Mutant::Meta::Example.add do
source 'foo { |(a)| }'
singleton_mutations
mutation 'foo { || }'
mutation 'foo { |a| }'
mutation 'foo { |(a)| raise }'
mutation 'foo { |(_a)| }'
mutation 'foo'
end