File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 527
527
528
528
(ert-deftest elixir-mode-syntax-table/question-quote ()
529
529
" https://github.com/elixir-lang/emacs-elixir/issues/185"
530
- :tags '(fontification syntax-table hoge )
530
+ :tags '(fontification syntax-table)
531
531
(elixir-test-with-temp-buffer
532
532
" \" \\ \" foo\\ \"\" |> String.strip(?\" )"
533
533
(should-not (eq (elixir-test-face-at 28 ) 'font-lock-string-face )))
536
536
" \" \\ \" foo\\ \"\" |> String.strip(?')"
537
537
(should-not (eq (elixir-test-face-at 28 ) 'font-lock-string-face ))))
538
538
539
+ (ert-deftest elixir-mode-syntax-table/ignored-variables-in-pattern-match ()
540
+ " https://github.com/elixir-lang/emacs-elixir/issues/361"
541
+ :tags '(fontification syntax-table)
542
+ (elixir-test-with-temp-buffer
543
+ " (_1_day = 86_400)
544
+ _1_day"
545
+ (should (eq (elixir-test-face-at 2 ) 'font-lock-comment-face ))
546
+ (should (eq (elixir-test-face-at 19 ) 'font-lock-comment-face ))))
547
+
539
548
(provide 'elixir-mode-font-test )
540
549
541
550
; ;; elixir-mode-font-test.el ends here
You can’t perform that action at this time.
0 commit comments