nim-stint/tests/test_helpers.nim
2023-06-13 19:09:43 +07:00

11 lines
280 B
Nim

# this is some template to help mimicking unittest at compile time
# perhaps we can implement a real compile time unittest?
template ctCheck*(cond: untyped) =
doAssert(cond)
template ctTest*(name: string, body: untyped) =
block:
body
echo "[OK] compile time ", name