module RSpec::Mocks::ArgumentMatchers

def boolean

object.should_receive(:message).with(boolean())

@example

Matches a boolean value.
def boolean
  BooleanMatcher.new(nil)
end