module Roda::RodaPlugins::Base::RequestMethods

def _match_hash(hash)

Match the given hash if all hash matchers match.
def _match_hash(hash)
  # Allow calling private methods, as match methods are generally private
  hash.all?{|k,v| send("match_#{k}", v)}
end