@api private Provides the implementation of `be <operator> value`. Not intended to be instantiated directly.
# File lib/rspec/matchers/built_in/be.rb, line 139 def initialize(operand, operator) @expected = operand @operator = operator @args = [] end
@api private @return [String]
# File lib/rspec/matchers/built_in/be.rb, line 173 def description "be #{@operator} #{expected_to_sentence}#{args_to_sentence}" end
@api private @return [String]
# File lib/rspec/matchers/built_in/be.rb, line 154 def failure_message "expected: #{@operator} #{expected_formatted}\n" " got: #{@operator.to_s.gsub(/./, ' ')} #{actual_formatted}" end
@api private @return [String]
# File lib/rspec/matchers/built_in/be.rb, line 161 def failure_message_when_negated message = "`expect(#{actual_formatted}).not_to " "be #{@operator} #{expected_formatted}`" if [:<, :>, :<=, :>=].include?(@operator) message + " not only FAILED, it is a bit confusing." else message end end
# File lib/rspec/matchers/built_in/be.rb, line 145 def matches?(actual) @actual = actual @actual.__send__ @operator, @expected rescue ArgumentError false end