created by: github.com/xdotcommer from: github.com/xdotcommer/rspec-custom-matchers/blob/0ecfccd659d5038cdfc88fdc1fee08373e1ee75c/custom_matcher.rb
[Source]
# File lib/rspec/custom_matcher.rb, line 49 49: def matcher(name, context = self.class, &block) 50: klass = CustomMatcher.create(name, &block) 51: context.send(:define_method, name) { |*args| klass.new(*args) } 52: end
[Validate]