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

Merge remote branch 'aslakhellesoy/absolute-uri-fix'

This commit is contained in:
Jonas Nicklas 2009-12-12 22:13:40 +01:00
commit 2bc894e435

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