tests: standardize on embedded tests (migrate all from tests/ to lisp/ sources)
Some checks failed
Deploy (Gitea) / deploy (push) Failing after 2s

This commit is contained in:
2026-05-05 10:29:09 -04:00
parent 817d1c5fec
commit 9dd0ed2f78
17 changed files with 269 additions and 38 deletions

View File

@@ -40,21 +40,7 @@ Components are loaded in sequence (~:serial t~): package first (defines the publ
** Test System
The test system loads on top of ~opencortex~ and adds FiveAM (the test framework). Each test file is tangled from a ~:tangle ../tests/...~ block in the parent org file.
Note: not every harness or skill file has a corresponding test file. Tests exist only for the parts of the system where deterministic verification is most critical — the pipeline stages, the loader, the memory Merkle tree, and the peripheral vision model.
#+begin_src lisp
(defsystem :passepartout/tests
:depends-on (:passepartout :fiveam)
:components ((:file "tests/programming-org-tests")
(:file "tests/programming-lisp-tests")
(:file "tests/boot-sequence-tests")
(:file "tests/model-explorer-tests")
(:file "tests/diagnostics-tests")
(:file "tests/tui-tests")
(:file "tests/llm-gateway-tests")))
#+end_src
Tests are embedded directly in each module's source file — see the `* Test Suite` section at the end of each `.org` file. No separate test system is needed.
** TUI System