Sha256: 8de55915b2ee56ee33acf748304d9fd33827edba0afaf6299ee2d9895cde1279

Contents?: true

Size: 462 Bytes

Versions: 10

Compression:

Stored size: 462 Bytes

Contents

# encoding: utf-8

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

10 entries across 10 versions & 1 rubygems

Version Path
mutant-0.7.8 meta/begin.rb
mutant-0.7.7 meta/begin.rb
mutant-0.7.6 meta/begin.rb
mutant-0.7.5 meta/begin.rb
mutant-0.7.4 meta/begin.rb
mutant-0.7.3 meta/begin.rb
mutant-0.7.2 meta/begin.rb
mutant-0.7.1 meta/begin.rb
mutant-0.6.7 meta/begin.rb
mutant-0.6.6 meta/begin.rb