deploy: ef8504b16545c3de666f4cec8805b9f4672674f3

This commit is contained in:
LNSD 2022-11-03 18:05:55 +00:00
parent e554f5a33b
commit d41f608201

View File

@ -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()