Skip to content

Instantly share code, notes, and snippets.

@jondot
Created October 9, 2011 20:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jondot/1274080 to your computer and use it in GitHub Desktop.
Save jondot/1274080 to your computer and use it in GitHub Desktop.
multi rack test with minitest/spec
class MiniTest::Spec
include Rack::Test::Methods
def set_app(app)
@app = app
end
def app
@app
end
def r
last_response
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment