FIX: Correct all tangle paths and regenerate Lisp sources

This commit is contained in:
2026-04-09 20:53:09 -04:00
parent 740ddc4183
commit 2facbe1c82
29 changed files with 592 additions and 117 deletions

View File

@@ -0,0 +1,11 @@
(defpackage :org-agent-memory-tests
(:use :cl :fiveam :org-agent))
(in-package :org-agent-memory-tests)
(def-suite memory-suite :description "Tests for Homoiconic Memory.")
(in-suite memory-suite)
(test test-id-injection
(let* ((node (list :type :HEADLINE :properties nil))
(normalized (org-agent::memory-ensure-id node)))
(is (not (null (getf (getf normalized :properties) :ID))))))