@api private Provides the implementation for `be_falsey`. Not intended to be instantiated directly.
@api private @return [String]
# File lib/rspec/matchers/built_in/be.rb, line 35 def failure_message "expected: falsey value\n got: #{actual.inspect}" end
@api private @return [String]
# File lib/rspec/matchers/built_in/be.rb, line 41 def failure_message_when_negated "expected: truthy value\n got: #{actual.inspect}" end
# File lib/rspec/matchers/built_in/be.rb, line 47 def match(_, actual) !actual end