futurum
Translation status: हिन्दी reader-locale proof. Code fences render through the hi pipeline; prose is canonical Latin.
Marks a test case as pending future work with a reason.
Aliases: todo, pending
Syntax: proba <name> futurum <reason> <block>
Category#
testing
Related#
Examples#
radix/corpus/futurum/futurum.fab (canonical · keyword)#
Marks a test case as pending future work with a reason.
# =============================================================================
# futurum — Marks a test case as pending future work with a reason
# =============================================================================
#
# What this teaches:
# • Marks a test case as pending future work with a reason.
# • Related keywords: proba, omitte
#
# Common mistakes:
# • Using `futurum` on tests that are actually implemented — `futurum` marks pending work; active tests should omit this modifier.
#
# See also: proba, omitte
# =============================================================================
# futurum — todo test modifier
#
# GRAMMAR:
# testModifier :← 'futurum' stringLit
#
# EXPECTED OUTPUT:
# No incipit — declaration or test-runner surface only.
#
# BACKEND:
# declaration-only test modifier (whitelist: futurum/futurum.fab).
#
test "async file operations" todo "needs async support" {
assert true
}