mirror of https://github.com/vacp2p/nim-libp2p.git
31 lines
484 B
Nim
31 lines
484 B
Nim
import unittest2, chronos
|
|
|
|
export unittest2, chronos
|
|
|
|
template asyncTeardown*(body: untyped): untyped =
|
|
teardown:
|
|
waitFor(
|
|
(
|
|
proc() {.async.} =
|
|
body
|
|
)()
|
|
)
|
|
|
|
template asyncSetup*(body: untyped): untyped =
|
|
setup:
|
|
waitFor(
|
|
(
|
|
proc() {.async.} =
|
|
body
|
|
)()
|
|
)
|
|
|
|
template asyncTest*(name: string, body: untyped): untyped =
|
|
test name:
|
|
waitFor(
|
|
(
|
|
proc() {.async.} =
|
|
body
|
|
)()
|
|
)
|