free_mutant/meta/super.rb
2015-08-14 16:59:31 +00:00

25 lines
441 B
Ruby

Mutant::Meta::Example.add do
source 'super'
singleton_mutations
mutation 'super()'
end
Mutant::Meta::Example.add do
source 'super()'
singleton_mutations
end
Mutant::Meta::Example.add do
source 'super(foo, bar)'
singleton_mutations
mutation 'super()'
mutation 'super(foo)'
mutation 'super(bar)'
mutation 'super(foo, nil)'
mutation 'super(foo, self)'
mutation 'super(nil, bar)'
mutation 'super(self, bar)'
end