free_mutant/meta/super.rb
2018-09-12 13:15:43 +00:00

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