summary refs log tree commit diff stats
path: root/tests/stdlib/tdecodequery.nim
blob: ae180742fb6977be5976684a70439f4009740e27 (plain) (blame)
1
2
3
4
5
6
7
import std/[uri, sequtils]


block:
  doAssert toSeq(decodeQuery("a=1&b=0")) == @[("a", "1"), ("b", "0")]
  doAssertRaises(UriParseError):
    discard toSeq(decodeQuery("a=1&b=2c=6"))