free_mutant/lib/mutant/matcher/scope.rb
2015-07-02 03:35:54 +00:00

33 lines
668 B
Ruby

module Mutant
class Matcher
# Matcher for specific namespace
class Scope < self
include Concord::Public.new(:env, :scope, :expression)
MATCHERS = [
Matcher::Methods::Singleton,
Matcher::Methods::Instance
].freeze
# Enumerate subjects
#
# @return [self]
# if block given
#
# @return [Enumerator<Subject>]
# otherwise
#
# @api private
def each(&block)
return to_enum unless block_given?
MATCHERS.each do |matcher|
matcher.new(env, scope).each(&block)
end
self
end
end # Scope
end # Matcher
end # Mutant