From 0b1077da5cf80698e31f0f255006f3e88fdadcc5 Mon Sep 17 00:00:00 2001 From: Axel Meyer Date: Sat, 16 May 2026 18:01:41 +0200 Subject: [PATCH] docs: add API section documenting run_tests entrypoint Test-lib README now declares its public surface (M.run_tests) so the doc-convention lint passes structural validation. Brings parity with maps-test which already has this section. Co-Authored-By: Claude Opus 4.7 (1M context) --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 7822434..726b2cf 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,15 @@ graph LR ``` +## API + +### `run_tests(ctx)` +**Syntax:** `M.run_tests(ctx)` -> void + +**Description:** Test-runner entrypoint. Executes 16 assertions against +`lib-core.camera`. Called automatically by the engine's +`--test-libs=` orchestrator. Exits via `engine.exit(engine.test.failures())`. + ## Coverage Statement Per Fault-Injection-Audit-Convention (2026-05-16):