Sha256: 5be3f35a57a259292e704c1cb432ab1d9bcaae194eb537f5334f0c2416a3a7d1

Contents?: true

Size: 443 Bytes

Versions: 5

Compression:

Stored size: 443 Bytes

Contents

Mutant::Meta::Example.add do

  source 'true; false'
  # Mutation of each statement in block
  mutation 'true; true'
  mutation 'false; false'
  mutation 'nil; false'
  mutation 'true; nil'

  # Delete each statement
  mutation 'true'
  mutation 'false'
end

# encoding: utf-8

Mutant::Meta::Example.add do

  source s(:begin, s(:true))
  # Mutation of each statement in block
  mutation s(:begin, s(:nil))
  mutation s(:begin, s(:false))
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
mutant-0.8.3 meta/begin.rb
mutant-0.8.2 meta/begin.rb
mutant-0.8.1 meta/begin.rb
mutant-0.8.0 meta/begin.rb
mutant-0.7.9 meta/begin.rb