mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-07 16:33:08 +00:00
13 lines
468 B
Nim
13 lines
468 B
Nim
|
|
template suitex*(name: string, body: untyped) = discard
|
||
|
|
template xsuite*(name: string, body: untyped) = discard
|
||
|
|
|
||
|
|
template testx*(name: string, body: untyped) = discard
|
||
|
|
template xtest*(name: string, body: untyped) = discard
|
||
|
|
|
||
|
|
template procSuitex*(name: string, body: untyped) = discard
|
||
|
|
template xprocSuite*(name: string, body: untyped) = discard
|
||
|
|
|
||
|
|
template asyncTestx*(name: string, body: untyped) = discard
|
||
|
|
template xasyncTest*(name: string, body: untyped) = discard
|
||
|
|
|