Use Rack::Lint to test the rack session

This commit is contained in:
Simon Rozet 2009-06-05 18:09:31 +02:00
parent 8cda77318c
commit 4c010d1c65
1 changed files with 4 additions and 1 deletions

View File

@ -15,6 +15,9 @@ class Test::Unit::TestCase
include Webrat::Matchers
def app
RackApp.new
Rack::Builder.new {
use Rack::Lint
run RackApp.new
}
end
end