]> git.eshelyaron.com Git - emacs.git/commitdiff
* test/lisp/emacs-lisp/rx-tests.el: Improve test coverage.
authorMattias Engdegård <mattiase@acm.org>
Sat, 29 Aug 2020 11:10:18 +0000 (13:10 +0200)
committerMattias Engdegård <mattiase@acm.org>
Sat, 29 Aug 2020 11:10:18 +0000 (13:10 +0200)
test/lisp/emacs-lisp/rx-tests.el

index 0e6f27836eac12fb21968c16dfd37a45c75d9b33..3b01d89dbab815da1713ae98a8d5c56aefb3e9ea 100644 (file)
 (ert-deftest rx-def-in-or ()
   (rx-let ((a b)
            (b (or "abc" c))
-           (c ?a))
+           (c ?a)
+           (d (any "a-z")))
     (should (equal (rx (or a (| "ab" "abcde") "abcd"))
-                   "\\(?:a\\(?:b\\(?:c\\(?:de?\\)?\\)?\\)?\\)"))))
+                   "\\(?:a\\(?:b\\(?:c\\(?:de?\\)?\\)?\\)?\\)"))
+    (should (equal (rx (or ?m (not d)))
+                   "[^a-ln-z]"))))
 
 (ert-deftest rx-char-any ()
   "Test character alternatives with `]' and `-' (Bug#25123)."
   ;; relint suppression: Single-character range .f-f
   ;; relint suppression: Range .--/. overlaps previous .-
   ;; relint suppression: Range .\*--. overlaps previous .--/
-  (should (equal (rx (any "-a" "c-" "f-f" "--/*--"))
-                 "[*-/acf]"))
+  (should (equal (rx (any "-a" "c-" "f-f" "--/*--") (any "," "-" "A"))
+                 "[*-/acf][,A-]"))
   (should (equal (rx (any "]-a" ?-) (not (any "]-a" ?-)))
                  "[]-a-][^]-a-]"))
   (should (equal (rx (any "--]") (not (any "--]"))
                  "ab")))
 
 (ert-deftest rx-literal ()
+  (should (equal (rx (literal "$a"))
+                 "\\$a"))
   (should (equal (rx (literal (char-to-string 42)) nonl)
                  "\\*."))
   (let ((x "a+b"))