Class: RSpec::Matchers::OperatorMatcher

Inherits:
Object
  • Object
show all
Defined in:
lib/rspec/matchers/operator_matcher.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(actual) ⇒ OperatorMatcher

Returns a new instance of OperatorMatcher.



20
21
22
# File 'lib/rspec/matchers/operator_matcher.rb', line 20

def initialize(actual)
  @actual = actual
end

Class Method Details

.get(klass, operator) ⇒ Object



15
16
17
# File 'lib/rspec/matchers/operator_matcher.rb', line 15

def get(klass, operator)
  registry[klass] && registry[klass][operator]
end

.register(klass, operator, matcher) ⇒ Object



10
11
12
13
# File 'lib/rspec/matchers/operator_matcher.rb', line 10

def register(klass, operator, matcher)
  registry[klass] ||= {}
  registry[klass][operator] = matcher
end

.registryObject



6
7
8
# File 'lib/rspec/matchers/operator_matcher.rb', line 6

def registry
  @registry ||= {}
end

.use_custom_matcher_or_delegate(operator) ⇒ Object



24
25
26
27
28
29
30
31
32
# File 'lib/rspec/matchers/operator_matcher.rb', line 24

def self.use_custom_matcher_or_delegate(operator)
  define_method(operator) do |expected|
    if matcher = OperatorMatcher.get(@actual.class, operator)
      @actual.send(::RSpec::Matchers.last_should, matcher.new(expected))
    else
      eval_match(@actual, operator, expected)
    end
  end
end

Instance Method Details

#descriptionObject



42
43
44
# File 'lib/rspec/matchers/operator_matcher.rb', line 42

def description
  "#{@operator} #{@expected.inspect}"
end

#fail_with_message(message) ⇒ Object



38
39
40
# File 'lib/rspec/matchers/operator_matcher.rb', line 38

def fail_with_message(message)
  RSpec::Expectations.fail_with(message, @expected, @actual)
end