# File lib/rspec/matchers/built_in/be.rb, line 11 def failure_message_for_should "expected: true value\n got: #{actual.inspect}" end
# File lib/rspec/matchers/built_in/be.rb, line 15 def failure_message_for_should_not "expected: non-true value\n got: #{actual.inspect}" end
# File lib/rspec/matchers/built_in/be.rb, line 7 def match(_, actual) !!actual end