module RSpec::Matchers

def be_a(klass)

passes if target.kind_of?(klass)
def be_a(klass)
  be_a_kind_of(klass)
end