]> git.eshelyaron.com Git - emacs.git/commitdiff
; * test/src/treesit-tests.el (treesit-misc): Remove test.
authorYuan Fu <casouri@gmail.com>
Mon, 21 Nov 2022 21:34:38 +0000 (13:34 -0800)
committerYuan Fu <casouri@gmail.com>
Mon, 21 Nov 2022 21:34:38 +0000 (13:34 -0800)
This test is for treesit--setting-for-mode, which is removed when we
switched from using treesit-settings to using separate major modes.

test/src/treesit-tests.el

index c736f97e312d28ee3f2a2c57cfaf715ffa953b35..59264722bac4e94f1eaf96721f88f3d633879a7e 100644 (file)
@@ -522,27 +522,6 @@ visible_end.)"
     (insert "]")
     (should (treesit-node-check array-node 'outdated))))
 
-(ert-deftest treesit-misc ()
-  "Misc helper functions."
-  (skip-unless (treesit-available-p))
-  (let ((settings '((t 0 t)
-                    (c-mode 1 t)
-                    (text-mode 2 nil)
-                    (prog-mode 3 t)
-                    (fundamental-mode 4 t))))
-    ;; `treesit--setting-for-mode'.
-    ;; Exact match.
-    (should (eq 1 (treesit--setting-for-mode 'c-mode settings)))
-    ;; Inherit from t.
-    (should (eq 0 (treesit--setting-for-mode 'non-exist settings)))
-    ;; Inherit from prog-mode rather than fundamental-mode.
-    (require 'elisp-mode)
-    (should (eq 3 (treesit--setting-for-mode 'emacs-lisp-mode settings)))
-    ;; Not inherit from text-mode.
-    (require 'outline)
-    (should (not (eq 2 (treesit--setting-for-mode 'outline-mode settings))))
-    ))
-
 ;; TODO
 ;; - Functions in treesit.el
 ;; - treesit-load-name-override-list