Sha256: da050a3ec6049612a9f827ef0b5edfda3ba98787130554c032eff20cd8482065

Contents?: true

Size: 515 Bytes

Versions: 3

Compression:

Stored size: 515 Bytes

Contents

Mutant::Meta::Example.add do
  source 'super'

  singleton_mutations
end

Mutant::Meta::Example.add do
  source 'super()'

  singleton_mutations
  # this is zsuper a totally different node than super()
  mutation 'super'
end

Mutant::Meta::Example.add do
  source 'super(foo, bar)'

  singleton_mutations
  mutation 'super'
  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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mutant-0.8.1 meta/super.rb
mutant-0.8.0 meta/super.rb
mutant-0.7.9 meta/super.rb