Skip to content

Commit 437e283

Browse files
committed
Remove failing tests covering obsolete and removed features
1 parent 0addbff commit 437e283

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

test/hack-unit-test.el

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -407,8 +407,6 @@ function stuff(): int {
407407
(ert-deftest hack-highlight-keyword ()
408408
(with-hack-buffer "class"
409409
(should (eq (face-at-point) 'font-lock-keyword-face)))
410-
(with-hack-buffer "CLASS"
411-
(should (eq (face-at-point) 'font-lock-keyword-face)))
412410
(with-hack-buffer "endforeach"
413411
(should (eq (face-at-point) 'font-lock-keyword-face))))
414412

@@ -559,14 +557,6 @@ qux();"
559557
(search-forward "qux")
560558
(should (not (eq (face-at-point) 'font-lock-comment-face)))))
561559

562-
(ert-deftest hack-highlight-shell-comment ()
563-
(with-hack-buffer "# foo bar
564-
baz()"
565-
(search-forward "foo")
566-
(should (eq (face-at-point) 'font-lock-comment-face))
567-
(search-forward "baz")
568-
(should (not (eq (face-at-point) 'font-lock-comment-face)))))
569-
570560
(ert-deftest hack-highlight-string-interpolation ()
571561
(with-hack-buffer "$x = \"$foo bar\";"
572562
(search-forward "f")

0 commit comments

Comments
 (0)