Sha256: 9d5f95d6ace3724664496c6b5f979867711ce5b3a7336c82b259d4f7584463f7

Contents?: true

Size: 333 Bytes

Versions: 7

Compression:

Stored size: 333 Bytes

Contents

# encoding: utf-8

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

7 entries across 7 versions & 1 rubygems

Version Path
mutant-0.5.19 lib/mutant/mutation/neutral.rb
mutant-0.5.18 lib/mutant/mutation/neutral.rb
mutant-0.5.17 lib/mutant/mutation/neutral.rb
mutant-0.5.16 lib/mutant/mutation/neutral.rb
mutant-0.5.15 lib/mutant/mutation/neutral.rb
mutant-0.5.14 lib/mutant/mutation/neutral.rb
mutant-0.5.13 lib/mutant/mutation/neutral.rb