free_mutant/lib/mutant/matcher/chain.rb

46 lines
863 B
Ruby
Raw Normal View History

2012-08-29 08:00:37 -04:00
module Mutant
class Matcher
# A chain of matchers
class Chain < self
include Concord::Public.new(:matchers)
2012-08-29 08:00:37 -04:00
# Enumerate subjects
#
# @return [Enumerator<Subject]
# returns subject enumerator if no block given
#
# @return [self]
# returnns self otherwise
#
# @api private
#
def each(&block)
return to_enum unless block_given?
matchers.each do |matcher|
2012-08-29 08:00:37 -04:00
matcher.each(&block)
end
self
end
# Build matcher chain
#
# @param [Enumerable<Matcher>] matchers
#
# @return [Matcher]
#
# @api private
#
def self.build(matchers)
if matchers.length == 1
return matchers.first
end
new(matchers)
end
2013-06-14 14:54:02 -04:00
end # Chain
end # Matcher
end # Mutant