mirror of
https://github.com/logos-messaging/logos-messaging-nim.git
synced 2026-01-04 15:03:08 +00:00
feat(testlib): mark commented test cases as skipped
This commit is contained in:
parent
4891584cbd
commit
d34c3bf41d
@ -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