Sha256: ce00eb630b5e805bd1765bac5e355fb9249ac311f1fb63c37d5924a39fbbd264
Contents?: true
Size: 620 Bytes
Versions: 7
Compression:
Stored size: 620 Bytes
Contents
module Mutant class Mutation # Neutral mutation class Neutral < self # Return identification # # @return [String] # # @api private # def identification "noop:#{super}" end memoize :identification # Test if killer is successful # # @param [Killer] killer # # @return [true] # if killer did NOT killed mutation # # @return [false] # otherwise # # @api private # def success?(killer) !killer.killed? end end # Neutral end # Mutation end # Mutant
Version data entries
7 entries across 7 versions & 1 rubygems