DEBSOURCES
Skip Quicknav
sources / ruby-rspec-expectations / 2.14.2-1~bpo70%2B1 / lib / rspec / matchers / built_in / match.rb
123456789101112
module RSpec module Matchers module BuiltIn class Match < BaseMatcher def match(expected, actual) actual.match expected end end end end end