nim-json-rpc/tests/helpers.nim
Jacek Sieka b4aff8fec5
remove news support (#155)
`news` has several resource leaks and other security issues - replaced
by `nim-websock` which is actively maintained.
2022-11-08 14:39:29 +01:00

13 lines
278 B
Nim

import
../json_rpc/router
template `==`*(a, b: distinct (string|StringOfJson)): bool =
string(a) == string(b)
template `==`*(a: StringOfJson, b: JsonNode): bool =
parseJson(string a) == b
template `==`*(a: JsonNode, b: StringOfJson): bool =
a == parseJson(string b)