mirror of
https://github.com/status-im/nim-dagger.git
synced 2025-02-06 03:44:26 +00:00
29 lines
476 B
Nim
29 lines
476 B
Nim
import ./helpers
|
|
|
|
## Unit testing suite that calls checkTrackers in teardown to check for memory leaks using chronos trackers.
|
|
template checksuite*(name, body) =
|
|
suite name:
|
|
proc suiteProc() =
|
|
multisetup()
|
|
|
|
teardown:
|
|
checkTrackers()
|
|
|
|
body
|
|
|
|
suiteProc()
|
|
|
|
template asyncchecksuite*(name, body) =
|
|
suite name:
|
|
proc suiteProc() =
|
|
asyncmultisetup()
|
|
|
|
teardown:
|
|
checkTrackers()
|
|
|
|
body
|
|
|
|
suiteProc()
|
|
|
|
export helpers
|