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

@@ -8,6 +8,11 @@ Structural manipulation tools for Org-mode files. This skill handles reading, wr
* Implementation
** Package Context
#+begin_src lisp
(in-package :passepartout)
#+end_src
** Reading Files (with Privacy Filter)
;; REPL-VERIFIED: 2026-05-03T13:00:00
#+begin_src lisp
@@ -331,7 +336,7 @@ AST format: (:TYPE :HEADLINE :properties (:ID ... :TITLE ... :TAGS (...))
* Test Suite
Verification of the structural manipulation for Org-mode files and their AST representation.
#+begin_src lisp :tangle ../tests/programming-org-tests.lisp
#+begin_src lisp
(eval-when (:compile-toplevel :load-toplevel :execute)
(ignore-errors (ql:quickload :fiveam :silent t)))