asynctest/tests/testAsyncTest.nim
Mark Spanbroek 195f8cf668 Add Readme
Update test to match example in Readme.
2021-01-11 14:23:36 +01:00

22 lines
426 B
Nim

import std/unittest
import std/asyncdispatch
import pkg/asynctest
proc someAsyncProc {.async.} =
# perform some async operations using await
discard
suite "test async proc":
asyncsetup:
# invoke await in the test setup:
await someAsyncProc()
asyncteardown:
# invoke await in the test teardown:
await someAsyncProc()
asynctest "async test":
# invoke await in tests:
await someAsyncProc()