aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Kangas2022-10-21 08:13:25 +0200
committerStefan Kangas2022-10-21 08:13:25 +0200
commitdd02db5702e46af6543be14cb05d981fa261ad1a (patch)
tree295d865d71039f0a3837e22e53033e2d82c6cb10
parent6987c5bbb794a001f6e5654bd9ea9c0e097bac09 (diff)
downloademacs-pkg.tar.gz
emacs-pkg.zip
Fix cl-intern/cl-unintern testspkg
* test/src/pkg-tests.el (pkg-tests-cl-intern) (pkg-tests-cl-unintern): Fix tests.
-rw-r--r--test/src/pkg-tests.el15
1 files changed, 13 insertions, 2 deletions
diff --git a/test/src/pkg-tests.el b/test/src/pkg-tests.el
index 1cfea6a6320..aff6ff0eb51 100644
--- a/test/src/pkg-tests.el
+++ b/test/src/pkg-tests.el
@@ -126,10 +126,21 @@
126 (should nil)) 126 (should nil))
127 127
128(ert-deftest pkg-tests-cl-intern () 128(ert-deftest pkg-tests-cl-intern ()
129 (should nil)) 129 (cl-assert (not (find-symbol "foo")))
130 (unwind-protect
131 (progn
132 (cl-intern "foo")
133 (should (find-symbol "foo")))
134 (cl-unintern 'foo)))
130 135
131(ert-deftest pkg-tests-cl-unintern () 136(ert-deftest pkg-tests-cl-unintern ()
132 (should nil)) 137 (cl-assert (not (find-symbol "foo")))
138 (unwind-protect
139 (progn
140 (cl-intern "foo")
141 (cl-unintern 'foo)
142 (should-not (find-symbol "foo")))
143 (cl-unintern 'foo)))
133 144
134(ert-deftest pkg-tests-export () 145(ert-deftest pkg-tests-export ()
135 (should nil)) 146 (should nil))