free_mutant/meta/restarg.rb
2016-03-22 01:01:21 +00:00

8 lines
213 B
Ruby

Mutant::Meta::Example.add :restarg do
source 'def foo(*bar); end'
mutation 'def foo; end'
mutation 'def foo(*bar); bar = []; end'
mutation 'def foo(*bar); raise; end'
mutation 'remove_method(:foo)'
end