nim-stint/tests/test_helpers.nim

10 lines
267 B
Nim
Raw Normal View History

2019-10-23 02:20:06 +00:00
# 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) =
body
echo "[OK] compile time ", name