seam

Personal wiki toolkit for Emacs
Log | Files | Refs | LICENSE

commit fc232d53ec6de313cf8302292c8b04aa5ea2fa99
parent e5f58a411e3343a27fb6c1787bc9404d89cc0309
Author: Spencer Williams <spnw@plexwave.org>
Date:   Mon,  7 Jul 2025 12:55:36 -0400

Add test re modifying seam-export-alist

Diffstat:
Mlisp/seam-test.el | 13+++++++++++++
1 file changed, 13 insertions(+), 0 deletions(-)

diff --git a/lisp/seam-test.el b/lisp/seam-test.el @@ -510,6 +510,19 @@ it." (seam-test-add-contents note ":PROPERTIES:\n:SEAM_SLUG: c-vs-cpp\n:END:") (seam-test-list-files))))) +(ert-deftest seam-test-removing-type-from-export-alist () + (should + (equal + '("public/note.org") + (seam-test-with-notes () + ((note "Note" "public")) + (setq seam-export-alist + `((,(file-name-concat seam-test-directory "html") + :types ("foo") + :root-path "/"))) + (seam-export-all-notes) + (seam-test-list-files))))) + (provide 'seam-test) ;;; seam-test.el ends here