aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/lisp/emacs-lisp/rx-tests.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/lisp/emacs-lisp/rx-tests.el b/test/lisp/emacs-lisp/rx-tests.el
index 4ecc805aead..26e39f8c8ed 100644
--- a/test/lisp/emacs-lisp/rx-tests.el
+++ b/test/lisp/emacs-lisp/rx-tests.el
@@ -128,7 +128,9 @@
128 (should (equal (rx (any) (not (any))) 128 (should (equal (rx (any) (not (any)))
129 "\\`a\\`[^z-a]")) 129 "\\`a\\`[^z-a]"))
130 (should (equal (rx (any "") (not (any ""))) 130 (should (equal (rx (any "") (not (any "")))
131 "\\`a\\`[^z-a]"))) 131 "\\`a\\`[^z-a]"))
132 (should (equal (rx (any space ?a digit space))
133 "[a[:space:][:digit:]]")))
132 134
133(ert-deftest rx-pcase () 135(ert-deftest rx-pcase ()
134 (should (equal (pcase "a 1 2 3 1 1 b" 136 (should (equal (pcase "a 1 2 3 1 1 b"