mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-15 09:26:38 +00:00
10 lines
267 B
Nim
10 lines
267 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) =
|
|
body
|
|
echo "[OK] compile time ", name
|