Sha256: 73267d14c4adccecefa44ac50140625aeff25f821a7ec3011a43f585453c816b
Contents?: true
Size: 819 Bytes
Versions: 46
Compression:
Stored size: 819 Bytes
Contents
# frozen_string_literal: true 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 Style/MutableConstant ALL = [] # Add example # # @return [undefined] def self.add(*types, &block) ALL << DSL.call(caller_locations(1).first, Set.new(types), 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
46 entries across 46 versions & 1 rubygems