18 lines
268 B
Nim
Raw Normal View History

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()