* Fix https://github.com/nim-lang/Nim/issues/13573 and https://github.com/nim-lang/Nim/issues/13574

* Restored asynchttpserver
This commit is contained in:
Andrea Ferretti
2020-03-06 19:38:56 +01:00
committed by GitHub
parent 4bd388ad58
commit 7ae0811818
2 changed files with 14 additions and 5 deletions

View File

@@ -4,7 +4,7 @@ output: "[Suite] httpcore"
import unittest
import httpcore
import httpcore, strutils
suite "httpcore":
@@ -29,3 +29,8 @@ suite "httpcore":
assert "baR" in h["cookiE"]
h.del("coOKie")
assert h.len == 0
# Test that header constructor works with repeated values
let h1 = newHttpHeaders({"a": "1", "a": "2", "A": "3"})
assert seq[string](h1["a"]).join(",") == "1,2,3"