aboutsummaryrefslogtreecommitdiff
path: root/tests/test-ai-config-fresh-org-prefix.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-06-23 20:12:58 -0400
committerCraig Jennings <c@cjennings.net>2026-06-23 20:12:58 -0400
commit10fa6f4e2e7150ad99827721ada1ae4badcc5e90 (patch)
tree960065c8e69f1e7a4150ecf522e2f813c239b5ee /tests/test-ai-config-fresh-org-prefix.el
parentf4cc70c69e7707dd4a686637e14885f5443fcca6 (diff)
downloaddotemacs-10fa6f4e2e7150ad99827721ada1ae4badcc5e90.tar.gz
dotemacs-10fa6f4e2e7150ad99827721ada1ae4badcc5e90.zip
chore(ai): archive gptel and remove it from the live config
I archived gptel to archive/gptel/ since I rarely use it. Moved there: the six gptel modules (ai-config, ai-conversations, ai-conversations-browser, ai-mcp, ai-quick-ask, ai-rewrite), the gptel-tools/ directory, custom/gptel-prompts.el, their test files and utilities, and the four gptel-only specs. Scrubbed from the live config: the ai-config require in init.el, which also drops the whole C-; a keymap; the gptel-mode emojify hook in font-config.el; the gptel-tools entries in the Makefile clean target and the coverage runner; and the gptel feature notes in README. Cancelled the open gptel tasks in todo.org (the AI Open Work issues, the feature-extension brainstorm, the velox gptel-magit bug). ai-term stays. It is the ghostel Claude launcher, independent of gptel. Verified: every module loads, a batch init launch reaches completion clean, and the full test suite shows only pre-existing coverage failures unrelated to this change.
Diffstat (limited to 'tests/test-ai-config-fresh-org-prefix.el')
-rw-r--r--tests/test-ai-config-fresh-org-prefix.el65
1 files changed, 0 insertions, 65 deletions
diff --git a/tests/test-ai-config-fresh-org-prefix.el b/tests/test-ai-config-fresh-org-prefix.el
deleted file mode 100644
index 16a3211c..00000000
--- a/tests/test-ai-config-fresh-org-prefix.el
+++ /dev/null
@@ -1,65 +0,0 @@
-;;; test-ai-config-fresh-org-prefix.el --- Tests for cj/gptel--fresh-org-prefix -*- lexical-binding: t; -*-
-
-;;; Commentary:
-;; Tests for cj/gptel--fresh-org-prefix from ai-config.el.
-;;
-;; Generates an org-mode level-1 heading containing the user's login
-;; name and a bracketed timestamp, used as the user message prefix in
-;; gptel org-mode conversations.
-
-;;; Code:
-
-(require 'ert)
-
-(add-to-list 'load-path (expand-file-name "tests" user-emacs-directory))
-(add-to-list 'load-path (expand-file-name "modules" user-emacs-directory))
-(require 'testutil-ai-config)
-(require 'ai-config)
-
-;;; Normal Cases
-
-(ert-deftest test-ai-config-fresh-org-prefix-normal-starts-with-org-heading ()
- "Result should start with '* ' for an org level-1 heading."
- (should (string-prefix-p "* " (cj/gptel--fresh-org-prefix))))
-
-(ert-deftest test-ai-config-fresh-org-prefix-normal-contains-username ()
- "Result should contain the current user's login name."
- (should (string-match-p (regexp-quote user-login-name)
- (cj/gptel--fresh-org-prefix))))
-
-(ert-deftest test-ai-config-fresh-org-prefix-normal-contains-timestamp ()
- "Result should contain a bracketed timestamp in YYYY-MM-DD HH:MM:SS format."
- (should (string-match-p "\\[[-0-9]+ [0-9]+:[0-9]+:[0-9]+\\]"
- (cj/gptel--fresh-org-prefix))))
-
-(ert-deftest test-ai-config-fresh-org-prefix-normal-ends-with-newline ()
- "Result should end with a newline."
- (should (string-suffix-p "\n" (cj/gptel--fresh-org-prefix))))
-
-(ert-deftest test-ai-config-fresh-org-prefix-normal-format-order ()
- "Result should have star, then username, then timestamp in order."
- (let ((result (cj/gptel--fresh-org-prefix)))
- (should (string-match
- (format "^\\* %s \\[" (regexp-quote user-login-name))
- result))))
-
-;;; Boundary Cases
-
-(ert-deftest test-ai-config-fresh-org-prefix-boundary-timestamp-reflects-today ()
- "Timestamp should contain today's date."
- (let ((today (format-time-string "%Y-%m-%d")))
- (should (string-match-p (regexp-quote today)
- (cj/gptel--fresh-org-prefix)))))
-
-(ert-deftest test-ai-config-fresh-org-prefix-boundary-overridden-username ()
- "Result should reflect a dynamically-bound user-login-name."
- (let ((user-login-name "testuser"))
- (should (string-match-p "testuser" (cj/gptel--fresh-org-prefix)))))
-
-(ert-deftest test-ai-config-fresh-org-prefix-boundary-empty-username ()
- "Empty user-login-name should produce heading with empty name slot."
- (let ((user-login-name ""))
- (should (string-match-p "^\\* \\[" (cj/gptel--fresh-org-prefix)))))
-
-(provide 'test-ai-config-fresh-org-prefix)
-;;; test-ai-config-fresh-org-prefix.el ends here