]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix cl-intern/cl-unintern tests
authorStefan Kangas <stefankangas@gmail.com>
Fri, 21 Oct 2022 06:13:25 +0000 (08:13 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Sat, 22 Oct 2022 09:23:33 +0000 (11:23 +0200)
* test/src/pkg-tests.el (pkg-tests-cl-intern)
(pkg-tests-cl-unintern): Fix tests.

test/src/pkg-tests.el

index 1cfea6a632034c796c38b576971efd236a4d169c..aff6ff0eb519d4953c8803264e7e4aef13e74d9d 100644 (file)
   (should nil))
 
 (ert-deftest pkg-tests-cl-intern ()
-  (should nil))
+  (cl-assert (not (find-symbol "foo")))
+  (unwind-protect
+      (progn
+        (cl-intern "foo")
+        (should (find-symbol "foo")))
+    (cl-unintern 'foo)))
 
 (ert-deftest pkg-tests-cl-unintern ()
-  (should nil))
+  (cl-assert (not (find-symbol "foo")))
+  (unwind-protect
+      (progn
+        (cl-intern "foo")
+        (cl-unintern 'foo)
+        (should-not (find-symbol "foo")))
+    (cl-unintern 'foo)))
 
 (ert-deftest pkg-tests-export ()
   (should nil))