Renderingen-US

fragilis

Translation status: English reader-locale proof. Code fences render through the en pipeline; prose is canonical Latin.

Marks a test as fragile.

Syntax: fragilis <number>

Category#

testing

Examples#

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

Marks a test as fragile.

# =============================================================================
# fragilis — Marks a test as fragile
# =============================================================================
#
# What this teaches:
#   • Marks a test as fragile.
#   • Related keywords: requirit
#
# Common mistakes:
#   • Marking a test as fragile without a reason — `fragilis <number>` requires a numeric identifier for the failure-tracking system.
#
# See also: requirit
# =============================================================================

# fragilis — allow-failure test modifier
#
# GRAMMAR:
#   testModifier :← 'fragilis' integer
#
# EXPECTED OUTPUT:
#   No incipit — declaration or test-runner surface only.
#
# BACKEND:
#   declaration-only test modifier (whitelist: fragilis/fragilis.fab).
#

test "fragile case" flaky 1 {
    assert true
}