nim-testutils/testutils/unittests.nim

18 lines
268 B
Nim

import
unittest2
export
unittest2
template procSuite*(name: string, body: untyped) =
proc suitePayload =
suite name, body
suitePayload()
template asyncTest*(name, body: untyped) =
test name:
proc scenario {.async.} = body
waitFor scenario()