aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2026-05-10 15:31:27 -0500
committerCraig Jennings <c@cjennings.net>2026-05-10 15:31:27 -0500
commit8c12629f8c4c8726b7b74ad3912abd9cd1cade9c (patch)
treeac24310962cebf647311c17368c0e5ff929c219d /tests
parenta2e41803d7d29a43ed37a5cf9fd7fe53ca5c15b5 (diff)
downloaddotemacs-8c12629f8c4c8726b7b74ad3912abd9cd1cade9c.tar.gz
dotemacs-8c12629f8c4c8726b7b74ad3912abd9cd1cade9c.zip
refactor(cj-window-geometry): rename to cj-window-geometry-lib
Same naming-convention fix as the other library renames in this series. Rename modules/cj-window-geometry.el -> modules/cj-window-geometry-lib.el and tests/test-cj-window-geometry.el -> tests/test-cj-window-geometry-lib.el. Update provide forms, file headers, and the (require 'cj-window-geometry) call sites in cj-window-toggle-lib.el, ai-vterm.el, vterm-config.el, and the test file. No behavior change.
Diffstat (limited to 'tests')
-rw-r--r--tests/test-cj-window-geometry-lib.el (renamed from tests/test-cj-window-geometry.el)10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/test-cj-window-geometry.el b/tests/test-cj-window-geometry-lib.el
index 8b0b9732..b9410451 100644
--- a/tests/test-cj-window-geometry.el
+++ b/tests/test-cj-window-geometry-lib.el
@@ -1,7 +1,7 @@
-;;; test-cj-window-geometry.el --- Tests for the shared window-geometry helpers -*- lexical-binding: t; -*-
+;;; test-cj-window-geometry-lib.el --- Tests for the shared window-geometry helpers -*- lexical-binding: t; -*-
;;; Commentary:
-;; Tests the three pure helpers in `cj-window-geometry.el':
+;; Tests the three pure helpers in `cj-window-geometry-lib.el':
;; `cj/window-direction', `cj/window-body-size', and
;; `cj/cardinal-to-edge-direction'.
@@ -10,7 +10,7 @@
(require 'ert)
(add-to-list 'load-path (expand-file-name "modules" user-emacs-directory))
-(require 'cj-window-geometry)
+(require 'cj-window-geometry-lib)
(ert-deftest test-cj-window-geometry--direction-right-split ()
"Normal: 2-window vertical split, right-side window -> right."
@@ -99,5 +99,5 @@
(should (null (cj/cardinal-to-edge-direction 'sideways)))
(should (null (cj/cardinal-to-edge-direction nil))))
-(provide 'test-cj-window-geometry)
-;;; test-cj-window-geometry.el ends here
+(provide 'test-cj-window-geometry-lib)
+;;; test-cj-window-geometry-lib.el ends here