aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--generate.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/generate.el b/generate.el
index 6e2e5e5..f6756f9 100644
--- a/generate.el
+++ b/generate.el
@@ -25,10 +25,12 @@
("script" . ,(format "make integration-test-%s TEST_ARCHIVE=$(realpath bin/)" module))))
(defun unit-test-exists-p (module)
- (file-exists-p (format "test/%s-test.el" module)))
+ (file-exists-p
+ (format "test/%s-test.el" (string-remove-suffix ".el" module))))
(defun integration-test-exists-p (module)
- (file-exists-p (format "test/integration/%s.bats" module)))
+ (file-exists-p
+ (format "test/integration/%s.bats" (string-remove-suffix ".el" module))))
(defun alist-p (lst)
(and (listp lst)