summaryrefslogtreecommitdiff
path: root/test/net/client_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/net/client_test.rb')
-rw-r--r--test/net/client_test.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/net/client_test.rb b/test/net/client_test.rb
index 1d06303..d4dee32 100644
--- a/test/net/client_test.rb
+++ b/test/net/client_test.rb
@@ -43,6 +43,19 @@ class Net::Hippie::ClientTest < Minitest::Test
assert_equal response.class, Net::HTTPCreated
end
+ def test_get_with_body
+ uri = URI.parse('https://haveibeenpwned.com/api/breaches')
+ body = { 'hello' => 'world' }
+ WebMock.stub_request(:get, uri.to_s)
+ .with(body: body.to_json)
+ .to_return(status: 201, body: {}.to_json)
+
+ response = subject.get(uri, body: body)
+
+ refute_nil response
+ assert_equal response.class, Net::HTTPCreated
+ end
+
def test_post
VCR.use_cassette("post_breaches") do
uri = URI.parse('https://haveibeenpwned.com/api/breaches')