Sha256: 3ee81f96f419af9c1bd28847ad9176a54b4f922efa7b5c010da0272d201fc6b7

Contents?: true

Size: 314 Bytes

Versions: 5

Compression:

Stored size: 314 Bytes

Contents

module Mutant
  class Mutation
    # Neutral mutation
    class Neutral < self

      SYMBOL      = 'neutral'.freeze
      SHOULD_FAIL = false

      # Noop mutation, special case of neutral
      class Noop < self

        SYMBOL = 'noop'.freeze

      end # Noop

    end # Neutral
  end # Mutation
end # Mutant

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
mutant-0.5.24 lib/mutant/mutation/neutral.rb
mutant-0.5.23 lib/mutant/mutation/neutral.rb
mutant-0.5.22 lib/mutant/mutation/neutral.rb
mutant-0.5.21 lib/mutant/mutation/neutral.rb
mutant-0.5.20 lib/mutant/mutation/neutral.rb