Skip to content

Commit 60ec485

Browse files
SophieBosiobbatsov
authored andcommitted
Add test case with complex metadata
1 parent 4528e87 commit 60ec485

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

test/clojure-mode-util-test.el

+6-1
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,12 @@
388388
(with-clojure-buffer-point
389389
"(defn- |^{:doc \"A function\"} foo [] 1)
390390
(defn- ^:private bar 2)"
391-
(expect (clojure-find-def) :to-equal '("defn-" "foo"))))
391+
(expect (clojure-find-def) :to-equal '("defn-" "foo")))
392+
(with-clojure-buffer-point
393+
"(def foo 1)
394+
(defn- ^{:|a {}} complex-metadata |[x y z] z)
395+
(def bar 2)"
396+
(expect (clojure-find-def) :to-equal '("defn-" "complex-metadata"))))
392397
(it "should recognize def...-, with or without metadata"
393398
(with-clojure-buffer-point
394399
"(def foo 1)

0 commit comments

Comments
 (0)