aboutsummaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
Diffstat (limited to 'test/src')
-rw-r--r--test/src/emacs-module-tests.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/src/emacs-module-tests.el b/test/src/emacs-module-tests.el
index 90cd37a98a5..c67190be5cb 100644
--- a/test/src/emacs-module-tests.el
+++ b/test/src/emacs-module-tests.el
@@ -148,6 +148,9 @@ changes."
148 (garbage-collect) ;; XXX: not enough to really test but it's something.. 148 (garbage-collect) ;; XXX: not enough to really test but it's something..
149 (should (string= ref-str mod-str)))) 149 (should (string= ref-str mod-str))))
150 150
151(ert-deftest mod-test-globref-free-test ()
152 (should (eq (mod-test-globref-free 1 'a "test" 'b) 'ok)))
153
151(ert-deftest mod-test-string-a-to-b-test () 154(ert-deftest mod-test-string-a-to-b-test ()
152 (should (string= (mod-test-string-a-to-b "aaa") "bbb"))) 155 (should (string= (mod-test-string-a-to-b "aaa") "bbb")))
153 156