mirror of
https://github.com/status-im/nim-stint.git
synced 2025-02-22 03:48:20 +00:00
11 lines
280 B
Nim
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
|