-
Notifications
You must be signed in to change notification settings - Fork 130
Open
Description
require 'fakeweb'
FakeWeb.allow_net_connect = false
reg = /http:\/\/a\.com\?a=1/
uri=URI("http://a.com?a=1")
FakeWeb.register_uri(:get, reg, body: 'ok')
Net::HTTP.get(uri)
results in a FakeWeb::NetConnectNotAllowedError (Real HTTP connections are disabled. Unregistered request: GET http://a.com/?a=1)
But uri.to_s.match reg gives a match
Registering the same url without regular expression also works
FakeWeb.clean_registry
uri=URI("http://a.com?a=1")
FakeWeb.register_uri(:get, uri.to_s, body: 'ok')
Net::HTTP.get(uri)
With a regular expression you need to add the trailing slash after the hostname to get a good result
FakeWeb.clean_registry
reg = /http:\/\/a\.com\/\?a=1/
uri=URI("http://a.com?a=1")
FakeWeb.register_uri(:get, reg, body: 'ok')
Net::HTTP.get(uri)
Seems inconsistent to me
Metadata
Metadata
Assignees
Labels
No labels