27 lines
493 B
Ruby
27 lines
493 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|