We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2387424 commit 821238dCopy full SHA for 821238d
lib/pact/hal/link.rb
@@ -56,7 +56,7 @@ def wrap_response(http_response)
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 + '}', value)
+ new_url = new_url.gsub('{' + key.to_s + '}', URI.escape(value))
60
end
61
new_url
62
spec/lib/pact/hal/link_spec.rb
@@ -98,6 +98,10 @@ module Hal
98
it "returns a duplicate Link with the expanded href" do
99
expect(subject.expand(bar: 'wiffle').href).to eq "http://foo/wiffle"
100
101
+
102
+ it "returns a duplicate Link with the expanded href with URL escaping" do
103
+ expect(subject.expand(bar: 'wiffle meep').href).to eq "http://foo/wiffle%20meep"
104
+ end
105
106
107
0 commit comments