File tree 2 files changed +7
-5
lines changed
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
- require 'uri '
1
+ require 'erb '
2
2
require 'delegate'
3
3
4
4
module Pact
@@ -54,11 +54,9 @@ def wrap_response(href, http_response)
54
54
end
55
55
56
56
def expand_url ( params , url )
57
- new_url = url
58
- params . each do | key , value |
59
- new_url = new_url . gsub ( '{' + key . to_s + '}' , URI . escape ( value ) )
57
+ params . inject ( url ) do | url , ( key , value ) |
58
+ url . gsub ( '{' + key . to_s + '}' , ERB ::Util . url_encode ( value ) )
60
59
end
61
- new_url
62
60
end
63
61
end
64
62
end
Original file line number Diff line number Diff line change @@ -102,6 +102,10 @@ module Hal
102
102
it "returns a duplicate Link with the expanded href with URL escaping" do
103
103
expect ( subject . expand ( bar : 'wiffle meep' ) . href ) . to eq "http://foo/wiffle%20meep"
104
104
end
105
+
106
+ it "returns a duplicate Link with the expanded href with URL escaping for forward slashes" do
107
+ expect ( subject . expand ( bar : 'wiffle/meep' ) . href ) . to eq "http://foo/wiffle%2Fmeep"
108
+ end
105
109
end
106
110
end
107
111
end
You can’t perform that action at this time.
0 commit comments