diff --git a/spec/integration/rack/test/test_helper.rb b/spec/integration/rack/test/test_helper.rb index d7532de0..bfa85b9b 100644 --- a/spec/integration/rack/test/test_helper.rb +++ b/spec/integration/rack/test/test_helper.rb @@ -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