free_mutant/meta/super.rb

26 lines
462 B
Ruby
Raw Normal View History

Mutant::Meta::Example.add :super do
source 'super'
singleton_mutations
mutation 'super()'
end
Mutant::Meta::Example.add :super do
source 'super()'
singleton_mutations
end
Mutant::Meta::Example.add :super 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