Sha256: 1462749ba26dc7e8994fbf9ddc54a08302c9260b2f8af367e80fcb6aa5c70e00
Contents?: true
Size: 1.48 KB
Versions: 24
Compression:
Stored size: 1.48 KB
Contents
# encoding: utf-8 module Mutant class Runner # Subject specific runner class Subject < self include Equalizer.new(:config, :subject) # Return subject # # @return [Subject] # # @api private # attr_reader :subject register Mutant::Subject # Initialize object # # @param [Config] config # @param [Subject] subject # # @return [undefined] # # @api private # def initialize(config, subject) @subject = subject super(config) end # Return mutation runners # # @return [Enumerable<Runner::Mutation>] # # @api private # attr_reader :mutations # Return failed mutations # # @return [Enumerable<Mutation>] # # @api private # def failed_mutations mutations.reject(&:success?) end memoize :failed_mutations # Test if subject was processed successful # # @return [true] # if successful # # @return [false] # otherwise # # @api private # def success? failed_mutations.empty? end private # Perform operation # # @return [undefined] # # @api private # def run subject = self.subject report(subject) @mutations = dispatch(subject.mutations) report(self) end end # Subject end # Runner end # Mutant
Version data entries
24 entries across 24 versions & 1 rubygems