File: //usr/local/rvm/src/ruby-2.6.8/spec/mspec/lib/mspec/matchers/base.rb
module MSpecMatchers
end
class MSpecEnv
include MSpecMatchers
end
# Expectations are sometimes used in a module body
class Module
include MSpecMatchers
end
class SpecPositiveOperatorMatcher
def initialize(actual)
@actual = actual
end
def ==(expected)
unless @actual == expected
SpecExpectation.fail_with("Expected #{@actual.pretty_inspect}",
"to equal #{expected.pretty_inspect}")
end
end
def <(expected)
unless @actual < expected
SpecExpectation.fail_with("Expected #{@actual.pretty_inspect}",
"to be less than #{expected.pretty_inspect}")
end
end
def <=(expected)
unless @actual <= expected
SpecExpectation.fail_with("Expected #{@actual.pretty_inspect}",
"to be less than or equal to #{expected.pretty_inspect}")
end
end
def >(expected)
unless @actual > expected
SpecExpectation.fail_with("Expected #{@actual.pretty_inspect}",
"to be greater than #{expected.pretty_inspect}")
end
end
def >=(expected)
unless @actual >= expected
SpecExpectation.fail_with("Expected #{@actual.pretty_inspect}",
"to be greater than or equal to #{expected.pretty_inspect}")
end
end
def =~(expected)
unless @actual =~ expected
SpecExpectation.fail_with("Expected #{@actual.pretty_inspect}",
"to match #{expected.pretty_inspect}")
end
end
end
class SpecNegativeOperatorMatcher
def initialize(actual)
@actual = actual
end
def ==(expected)
if @actual == expected
SpecExpectation.fail_with("Expected #{@actual.pretty_inspect}",
"not to equal #{expected.pretty_inspect}")
end
end
def <(expected)
if @actual < expected
SpecExpectation.fail_with("Expected #{@actual.pretty_inspect}",
"not to be less than #{expected.pretty_inspect}")
end
end
def <=(expected)
if @actual <= expected
SpecExpectation.fail_with("Expected #{@actual.pretty_inspect}",
"not to be less than or equal to #{expected.pretty_inspect}")
end
end
def >(expected)
if @actual > expected
SpecExpectation.fail_with("Expected #{@actual.pretty_inspect}",
"not to be greater than #{expected.pretty_inspect}")
end
end
def >=(expected)
if @actual >= expected
SpecExpectation.fail_with("Expected #{@actual.pretty_inspect}",
"not to be greater than or equal to #{expected.pretty_inspect}")
end
end
def =~(expected)
if @actual =~ expected
SpecExpectation.fail_with("Expected #{@actual.pretty_inspect}",
"not to match #{expected.pretty_inspect}")
end
end
end