free_mutant/meta/super.rb

28 lines
493 B
Ruby
Raw Permalink Normal View History

# frozen_string_literal: true
2018-09-12 09:15:43 -04:00
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