325e6b6fe0
- Mutates method bodies to `super` to catch cases where a method has been needlessly re-implemented and the parent class provides the equivalent behavior. - Closes #154 - Closes #673
8 lines
219 B
Ruby
8 lines
219 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 'def foo(*bar); super; end'
|
|
end
|