class MiniTest::Spec

def method_missing(name, *args, &block)

Delegate other missing methods to response.
def method_missing(name, *args, &block)
  if response && response.respond_to?(name)
    response.send(name, *args, &block)
  else
    super(name, *args, &block)
  end
rescue Rack::Test::Error # no response yet
  super(name, *args, &block)
end