Sha256: 7fdeac87910eb07c0041e37bb5a65f275bcc790b1ff85f0e92c9e01e9466cbfe
Contents?: true
Size: 1.54 KB
Versions: 2
Compression:
Stored size: 1.54 KB
Contents
module Mutant class Runner # Mutation runner class Mutation < self include Equalizer.new(:config, :mutation, :tests) register Mutant::Mutation # Return mutation # # @return [Mutation] # # @api private # attr_reader :mutation # Return killers # # @return [Enumerable<Runner::Killer>] # # @api private # attr_reader :killers # Initialize object # # @param [Config] config # @param [Mutation] mutation # @param [Enumerable<Test>] tests # # @return [undefined] # # @api private # def initialize(config, mutation, tests) @mutation, @tests = mutation, tests super(config) @stop = config.fail_fast && !success? end # Test if mutation was handeled successfully # # @return [true] # if successful # # @return [false] # otherwise # # @api private # def success? killers.any?(&:success?) end private # Perform operation # # @return [undefined] # # @api private # def run @killers = [] killers = @tests.map do |test| Mutant::Killer.new( mutation: mutation, test: test ) end killers.each do |killer| runner = visit(killer) @killers << runner return if runner.mutation_dead? end end end # Mutation end # Runner end # Mutant
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
mutant-0.5.21 | lib/mutant/runner/mutation.rb |
mutant-0.5.20 | lib/mutant/runner/mutation.rb |