Sha256: da17d75fd6c65ccd0b947ce5fe1213c96b759d0dfebd3f6f7627c192b96d206e

Contents?: true

Size: 462 Bytes

Versions: 12

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(:false))
  mutation s(:begin, s(:nil))
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
mutant-0.6.5 meta/begin.rb
mutant-0.6.4 meta/begin.rb
mutant-0.6.3 meta/begin.rb
mutant-0.6.2 meta/begin.rb
mutant-0.6.0 meta/begin.rb
mutant-0.5.26 meta/begin.rb
mutant-0.5.25 meta/begin.rb
mutant-0.5.24 meta/begin.rb
mutant-0.5.23 meta/begin.rb
mutant-0.5.22 meta/begin.rb
mutant-0.5.21 meta/begin.rb
mutant-0.5.20 meta/begin.rb