class RSpec::Matchers::BeFalse

Public Instance Methods

matches?(actual) click to toggle source
# File lib/rspec/matchers/be.rb, line 21
def matches?(actual)
  !super(actual)
end