Sha256: 81c41357cd64456336b6de3220448bd2b1e5839e1f01e30b65f944a633f6c7c9
Contents?: true
Size: 648 Bytes
Versions: 49
Compression:
Stored size: 648 Bytes
Contents
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
Version data entries
49 entries across 49 versions & 4 rubygems