Sha256: b0c779f4a6de92e7f6edc2e611b395d8ec0fd447d90bb22165cce32f88bea0dd
Contents?: true
Size: 615 Bytes
Versions: 20
Compression:
Stored size: 615 Bytes
Contents
# encoding: utf-8 module Mutant # The configuration of a mutator run class Config include Adamantium::Flat, Anima.new( :cache, :debug, :strategy, :matcher, :reporter, :fail_fast, :zombie, :expected_coverage ) # Enumerate subjects # # @api private # # @return [self] # if block given # # @return [Enumerator<Subject>] # otherwise # # @api private # def subjects(&block) return to_enum(__method__) unless block_given? matcher.each(&block) self end end # Config end # Mutant
Version data entries
20 entries across 20 versions & 1 rubygems