การเรนเดอร์th-TH

omitte

Translation status: ภาษาไทย reader-locale proof. Code fences render through the th-TH pipeline; prose is canonical Latin.

Marks a test case as skipped with a reason.

Aliases: skip

Syntax: proba <name> omitte <reason> <block>

Category#

testing

Examples#

radix/corpus/omitte/omitte.fab (canonical · keyword)#

Marks a test case as skipped with a reason.

# =============================================================================
# omitte — Marks a test case as skipped with a reason.
# =============================================================================
#
# What this teaches:
#   • Test skipping — `omitte` marks a test case to be skipped, with a required reason string.
#   • Test modifiers — Tests can be modified with `omitte` to temporarily disable them.
#
# Common mistakes:
#   • Confusing omitte (test skip) with tacet (no-op) — omitte marks a test as skipped, tacet is an empty statement.
#
# See also: proba, futurum
# =============================================================================

# omitte — skipped test modifier
#
# GRAMMAR:
#   testModifier :← 'omitte' stringLit
#
# EXPECTED OUTPUT:
#   No incipit — declaration or test-runner surface only.
#
# BACKEND:
#   declaration-only test modifier (whitelist: omitte/omitte.fab).
#

test "database connection" skip "blocked" {
    assert false
}