module Roda::RodaPlugins::Base::RequestMethods

def _match_hash(hash)

Match the given hash if all hash matchers match.
def _match_hash(hash)
  hash.all?{|k,v| send("match_#{k}", v)}
end