free_mutant/lib/mutant/killer/static.rb
2013-06-14 21:12:10 +02:00

32 lines
591 B
Ruby

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