aboutsummaryrefslogtreecommitdiff
path: root/modules/test-runner.el
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-05-24 16:30:20 -0500
committerCraig Jennings <c@cjennings.net>2026-05-24 16:30:20 -0500
commit61dad3bd7b327eb0cf5bb3a6a0421a7055ed126b (patch)
treed6461d99b3c0842880a1d10f885387587113c331 /modules/test-runner.el
parente1789025131b048049777542a91fb7eb55195ce5 (diff)
downloaddotemacs-61dad3bd7b327eb0cf5bb3a6a0421a7055ed126b.tar.gz
dotemacs-61dad3bd7b327eb0cf5bb3a6a0421a7055ed126b.zip
docs(load-graph): classify dev, diff, help, lint, and VC modules
Fifth classification batch: the development-workflow entry points and package config — coverage-core, coverage-elisp, dev-fkeys, diff-config, help-config, help-utils, flycheck-config, test-runner, vc-config. I annotated each header, added a Batch 5 table to the inventory, and extended the validation allowlist. 42 of 102 modules are now classified. Two more hidden dependencies turned up, both about cj/custom-keymap. dev-fkeys repeats the custom-buffer-file boundp shim for its C-; P binding. flycheck-config binds (:map cj/custom-keymap ...) through use-package without requiring keybindings, so it fails to load standalone. Both recorded for the Phase 2 dependency pass.
Diffstat (limited to 'modules/test-runner.el')
-rw-r--r--modules/test-runner.el10
1 files changed, 9 insertions, 1 deletions
diff --git a/modules/test-runner.el b/modules/test-runner.el
index 1c993446..2a6f25e7 100644
--- a/modules/test-runner.el
+++ b/modules/test-runner.el
@@ -2,7 +2,15 @@
;; author: Craig Jennings <c@cjennings.net>
;;
;;; Commentary:
-
+;;
+;; Layer: 2 (Core UX).
+;; Category: C/L.
+;; Load shape: eager.
+;; Eager reason: the test keymap entry point and project-scoped runner state.
+;; Top-level side effects: defines a test keymap, registers it under cj/custom-keymap.
+;; Runtime requires: ert, cl-lib, keybindings.
+;; Direct test load: yes (requires keybindings explicitly).
+;;
;; This module provides a powerful ERT test runner with focus/unfocus workflow
;; for efficient test-driven development in Emacs Lisp projects.
;;