1
0
Fork 0
mirror of https://github.com/teamcapybara/capybara.git synced 2022-11-09 12:08:07 -05:00

Testapps self contained running uses WEBrick

There's really no point in using Mongrel
This commit is contained in:
Jonas Nicklas 2010-12-17 09:19:47 +01:00
parent f58fa61c59
commit c20a00c694

View file

@ -101,5 +101,5 @@ class TestApp < Sinatra::Base
end
if __FILE__ == $0
Rack::Handler::Mongrel.run TestApp, :Port => 8070
Rack::Handler::WEBrick.run TestApp, :Port => 8070
end