1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
module RSpec
module Matchers
module DSL
# Defines a custom matcher.
# @see RSpec::Matchers
def define(name, &declarations)
matcher_template = RSpec::Matchers::DSL::Matcher.new(name, &declarations)
define_method name do |*expected|
matcher = matcher_template.for_expected(*expected)
matcher.matcher_execution_context = @matcher_execution_context ||= self
matcher
end
end
alias_method :matcher, :define
if RSpec.respond_to?(:configure)
RSpec.configure {|c| c.extend self}
end
end
end
end
RSpec::Matchers.extend RSpec::Matchers::DSL
|