Skip to content

Commit bba3a08

Browse files
committed
feat: update http client code
1 parent 094e0fe commit bba3a08

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

lib/pact/hal/http_client.rb

+4
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,10 @@ def raw_body
6868
__getobj__().body
6969
end
7070

71+
def status
72+
code.to_i
73+
end
74+
7175
def success?
7276
__getobj__().code.start_with?("2")
7377
end

lib/pact/hal/link.rb

+12
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,18 @@ def run(payload = nil)
2424
end
2525
end
2626

27+
def title_or_name
28+
title || name
29+
end
30+
31+
def title
32+
@attrs['title']
33+
end
34+
35+
def name
36+
@attrs['name']
37+
end
38+
2739
def get(payload = {}, headers = {})
2840
wrap_response(href, @http_client.get(href, payload, headers))
2941
end

spec/lib/pact/hal/http_client_spec.rb

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,11 @@
33
module Pact
44
module Hal
55
describe HttpClient do
6-
76
before do
87
allow(Retry).to receive(:until_true) { |&block| block.call }
98
end
109

11-
subject { HttpClient.new(username: 'foo', password: 'bar' ) }
10+
subject { HttpClient.new(username: 'foo', password: 'bar') }
1211

1312
describe "get" do
1413
let!(:request) do

0 commit comments

Comments
 (0)