Skip to content

Commit 9f65e36

Browse files
authored
Merge pull request #3 from guzba/ryan
0.1.8
2 parents 7c5651e + c250b5b commit 9f65e36

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

curly.nimble

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = "0.1.7"
1+
version = "0.1.8"
22
author = "Ryan Oldenburg"
33
description = "Makes using libcurl efficiently easy"
44
license = "MIT"

tests/test.nim

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,8 @@ curlPool.withHandle curl:
66
let response = curl.get("https://www.google.com")
77
doAssert response.code == 200
88
doAssert response.body.len > 0
9+
10+
curlPool.withHandle curl:
11+
let response = curl.head("https://www.google.com")
12+
doAssert response.code == 200
13+
doAssert response.body.len == 0

0 commit comments

Comments
 (0)