summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJonas Bernoulli <jonas@bernoul.li>2025-11-30 19:44:43 +0100
committerJonas Bernoulli <jonas@bernoul.li>2025-11-30 19:44:43 +0100
commit2362be8760407ceeb34c2a052b8a16a6d19e8d55 (patch)
tree7fcb5d538df259dc622c39a78386af399be6164c /test
parent151622e1470827b7a870354f2be6246a898b9bd5 (diff)
Rename test file
Name it "<package>-tests.el" like for all my other test files.
Diffstat (limited to 'test')
-rw-r--r--test/Makefile8
-rw-r--r--test/transient-tests.el (renamed from test/transient-test.el)2
2 files changed, 5 insertions, 5 deletions
diff --git a/test/Makefile b/test/Makefile
index 53993e7..1850c76 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -5,12 +5,12 @@ LOAD_PATH += -L ../lisp
test: lisp
@printf " Testing...\n"
- @$(EMACS_BATCH) -l $(PKG)-test -f ert-run-tests-batch-and-exit
+ @$(EMACS_BATCH) -l $(PKG)-tests -f ert-run-tests-batch-and-exit
test-interactive:
- @$(EMACS_INTR) -l $(PKG)-test --eval "(ert t)"
+ @$(EMACS_INTR) -l $(PKG)-tests --eval "(ert t)"
-lisp: $(addprefix ../lisp/,$(ELCS)) $(PKG)-test.elc
+lisp: $(addprefix ../lisp/,$(ELCS)) $(PKG)-tests.elc
%.elc: %.el
@printf "Compiling $<\n"
@@ -18,4 +18,4 @@ lisp: $(addprefix ../lisp/,$(ELCS)) $(PKG)-test.elc
clean:
@printf " Cleaning test/*...\n"
- @rm -rf $(PKG)-test.elc
+ @rm -rf $(PKG)-tests.elc
diff --git a/test/transient-test.el b/test/transient-tests.el
index f76aa2d..fa9d65d 100644
--- a/test/transient-test.el
+++ b/test/transient-tests.el
@@ -1,4 +1,4 @@
-;;; llama-tests.el --- Tests for Llama -*- lexical-binding:t -*-
+;;; transient-tests.el --- Tests for Transient -*- lexical-binding:t -*-
;; Copyright (C) 2018-2025 Jonas Bernoulli