# File lib/rspec/matchers/be.rb, line 55 def initialize(*args, &block) @args = args end
# File lib/rspec/matchers/be.rb, line 72 def description "be" end
# File lib/rspec/matchers/be.rb, line 64 def failure_message_for_should "expected #{@actual.inspect} to evaluate to true" end
# File lib/rspec/matchers/be.rb, line 68 def failure_message_for_should_not "expected #{@actual.inspect} to evaluate to false" end
# File lib/rspec/matchers/be.rb, line 59 def matches?(actual) @actual = actual !!@actual end