feat(testlib): mark commented test cases as skipped

This commit is contained in:
Lorenzo Delgado 2022-11-03 17:58:28 +01:00 committed by GitHub
parent 27a7040f8e
commit 85d2842f75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 21 additions and 8 deletions

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