Skip to content

Commit

Permalink
Merge pull request #3 from guzba/ryan
Browse files Browse the repository at this point in the history
0.1.8
  • Loading branch information
guzba authored May 17, 2023
2 parents 7c5651e + c250b5b commit 9f65e36
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion curly.nimble
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "0.1.7"
version = "0.1.8"
author = "Ryan Oldenburg"
description = "Makes using libcurl efficiently easy"
license = "MIT"
Expand Down
5 changes: 5 additions & 0 deletions tests/test.nim
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,8 @@ curlPool.withHandle curl:
let response = curl.get("https://www.google.com")
doAssert response.code == 200
doAssert response.body.len > 0

curlPool.withHandle curl:
let response = curl.head("https://www.google.com")
doAssert response.code == 200
doAssert response.body.len == 0

0 comments on commit 9f65e36

Please sign in to comment.