Sha256: cb2c18bd46868fed6423979cff92050c308c5ce83524f034323ebed901362188

Contents?: true

Size: 591 Bytes

Versions: 20

Compression:

Stored size: 591 Bytes

Contents

module Mutant
  class Killer
    # Abstract base class for killer with static result
    class Static < self

      # Return result
      #
      # @return [true]
      #   if mutation was killed
      #
      # @return [false]
      #   otherwise
      #
      # @api private
      #
      def run
        self.class::RESULT
      end

      # Killer that is always successful
      class Success < self
        RESULT = true
      end # Success

      # Killer that always fails
      class Fail < self
        RESULT = false
      end # Fail

    end # Static
  end # Killer
end # Mutant

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
mutant-0.3.0.beta21 lib/mutant/killer/static.rb
mutant-0.3.0.beta20 lib/mutant/killer/static.rb
mutant-0.3.0.beta19 lib/mutant/killer/static.rb
mutant-0.3.0.beta18 lib/mutant/killer/static.rb
mutant-0.3.0.beta17 lib/mutant/killer/static.rb
mutant-0.3.0.beta16 lib/mutant/killer/static.rb
mutant-0.3.0.beta15 lib/mutant/killer/static.rb
mutant-0.3.0.beta14 lib/mutant/killer/static.rb
mutant-0.3.0.beta13 lib/mutant/killer/static.rb
mutant-0.3.0.beta12 lib/mutant/killer/static.rb
mutant-0.3.0.beta11 lib/mutant/killer/static.rb
mutant-0.3.0.beta10 lib/mutant/killer/static.rb
mutant-0.3.0.beta9 lib/mutant/killer/static.rb
mutant-0.3.0.beta8 lib/mutant/killer/static.rb
mutant-0.3.0.beta7 lib/mutant/killer/static.rb
mutant-0.3.0.beta6 lib/mutant/killer/static.rb
mutant-0.3.0.beta5 lib/mutant/killer/static.rb
mutant-0.3.0.beta4 lib/mutant/killer/static.rb
mutant-0.3.0.beta3 lib/mutant/killer/static.rb
mutant-0.3.0.beta2 lib/mutant/killer/static.rb