module RSpec::Matchers

def respond_to(*names)


expect("string").to respond_to(:length)

@example

provided. Names can be Strings or Symbols.
Matches if the target object responds to all of the names
def respond_to(*names)
  BuiltIn::RespondTo.new(*names)
end