We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d27faa commit 1cea7efCopy full SHA for 1cea7ef
clojure-mode-test.el
@@ -86,6 +86,13 @@ POS."
86
:tags '(fontification syntax-table)
87
(should (eq (clojure-test-face-at 1 9 "SomeClass") 'font-lock-type-face)))
88
89
+(ert-deftest clojure-mode-syntax-table/constructor ()
90
+ :tags '(fontification syntax-table)
91
+ (should (eq (clojure-test-face-at 2 11 "(SomeClass.)") 'font-lock-type-face))
92
+ (clojure-test-with-temp-buffer "(ns/SomeClass.)"
93
+ (should (eq (clojure-test-face-at 2 3) 'font-lock-type-face))
94
+ (should (eq (clojure-test-face-at 5 14) 'font-lock-type-face))))
95
+
96
(ert-deftest clojure-mode-syntax-table/namespaced-symbol ()
97
98
(clojure-test-with-temp-buffer "clo.core/something"
0 commit comments