Sha256: 1a17ab416cb5bebd1efcfff67ca37ae686fdd779475a81674e13d5158cab2060
Contents?: true
Size: 799 Bytes
Versions: 6
Compression:
Stored size: 799 Bytes
Contents
module Mutant # Namespace for mutant metadata module Meta require 'mutant/meta/example' require 'mutant/meta/example/dsl' require 'mutant/meta/example/verification' # Mutation example class Example # rubocop:disable MutableConstant ALL = [] # Add example # # @return [undefined] def self.add(type, &block) file = caller.first.split(':in', 2).first ALL << DSL.call(file, type, block) end Pathname.glob(Pathname.new(__dir__).parent.parent.join('meta', '*.rb')) .sort .each(&method(:require)) ALL.freeze # Remove mutation method only present for DSL executions from meta/**/*.rb class << self undef_method :add end end # Example end # Meta end # Mutant
Version data entries
6 entries across 6 versions & 1 rubygems