Handle absolute URIs (happens with Rails)

This commit is contained in:
Aslak Hellesøy 2009-12-09 16:39:03 +01:00
parent 76bda6e558
commit 61338d0786
1 changed files with 2 additions and 0 deletions

View File

@ -1,3 +1,4 @@
require 'uri'
require 'net/http'
require 'rack'
require 'rack/handler/mongrel'
@ -18,6 +19,7 @@ class Capybara::Server
end
def url(path)
path = URI.parse(path).request_uri if path =~ /^http/
"http://#{host}:#{port}#{path}"
end