Class: Spec::Matchers::OperatorMatcher
- Inherits:
-
Object
- Object
- Spec::Matchers::OperatorMatcher
show all
- Defined in:
- lib/spec/matchers/operator_matcher.rb
Class Method Summary
collapse
Instance Method Summary
collapse
Constructor Details
Returns a new instance of OperatorMatcher.
20
21
22
|
# File 'lib/spec/matchers/operator_matcher.rb', line 20
def initialize(actual)
@actual = actual
end
|
Class Method Details
.get(klass, operator) ⇒ Object
15
16
17
|
# File 'lib/spec/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/spec/matchers/operator_matcher.rb', line 10
def register(klass, operator, matcher)
registry[klass] ||= {}
registry[klass][operator] = matcher
end
|
6
7
8
|
# File 'lib/spec/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/spec/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(::Spec::Matchers.last_should, matcher.new(expected))
else
eval_match(@actual, operator, expected)
end
end
end
|
Instance Method Details
#description ⇒ Object
42
43
44
|
# File 'lib/spec/matchers/operator_matcher.rb', line 42
def description
"#{@operator} #{@expected.inspect}"
end
|
#fail_with_message(message) ⇒ Object
38
39
40
|
# File 'lib/spec/matchers/operator_matcher.rb', line 38
def fail_with_message(message)
Spec::Expectations.fail_with(message, @expected, @actual)
end
|