mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-02-20 05:43:08 +00:00
deploy: ef8504b16545c3de666f4cec8805b9f4672674f3
This commit is contained in:
parent
e554f5a33b
commit
d41f608201
@ -1,12 +1,25 @@
|
||||
template suitex*(name: string, body: untyped) = discard
|
||||
import
|
||||
testutils/unittests
|
||||
|
||||
template xsuite*(name: string, body: untyped) = discard
|
||||
template suitex*(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 procSuitex*(name: string, body: untyped) = discard
|
||||
|
||||
template asyncTestx*(name: string, body: untyped) = discard
|
||||
template xasyncTest*(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()
|
||||
|
||||
template asyncTestx*(name: string, body: untyped) =
|
||||
test name:
|
||||
skip()
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user