2022-11-03 16:58:28 +00:00
|
|
|
import
|
|
|
|
testutils/unittests
|
2022-10-28 13:04:29 +00:00
|
|
|
|
2022-11-03 16:58:28 +00:00
|
|
|
template xsuite*(name: string, body: untyped) = discard
|
|
|
|
template suitex*(name: string, body: untyped) = discard
|
2022-10-28 13:04:29 +00:00
|
|
|
|
|
|
|
template xprocSuite*(name: string, body: untyped) = discard
|
2022-11-03 16:58:28 +00:00
|
|
|
template procSuitex*(name: string, body: untyped) = discard
|
|
|
|
|
|
|
|
|
|
|
|
template xtest*(name: string, body: untyped) =
|
|
|
|
test name:
|
|
|
|
skip()
|
|
|
|
|
|
|
|
template testx*(name: string, body: untyped) =
|
|
|
|
test name:
|
|
|
|
skip()
|
|
|
|
|
|
|
|
template xasyncTest*(name: string, body: untyped) =
|
|
|
|
test name:
|
|
|
|
skip()
|
2022-10-28 13:04:29 +00:00
|
|
|
|
2022-11-03 16:58:28 +00:00
|
|
|
template asyncTestx*(name: string, body: untyped) =
|
|
|
|
test name:
|
|
|
|
skip()
|