mirror of
https://github.com/logos-storage/asynctest.git
synced 2026-01-02 13:03:07 +00:00
15 lines
329 B
Nim
15 lines
329 B
Nim
template asynctest*(name, body) =
|
|
test name:
|
|
let asyncproc = proc {.async.} = body
|
|
waitFor asyncproc()
|
|
|
|
template asyncsetup*(body) =
|
|
setup:
|
|
let asyncproc = proc {.async.} = body
|
|
waitFor asyncproc()
|
|
|
|
template asyncteardown*(body) =
|
|
teardown:
|
|
let asyncproc = proc {.async.} = body
|
|
waitFor asyncproc()
|