Skip to content

Commit 4528e87

Browse files
SophieBosiobbatsov
authored andcommitted
Add more def...- tests, with and without metadata
1 parent bdcc372 commit 4528e87

File tree

1 file changed

+31
-2
lines changed

1 file changed

+31
-2
lines changed

test/clojure-mode-util-test.el

+31-2
Original file line numberDiff line numberDiff line change
@@ -390,10 +390,39 @@
390390
(defn- ^:private bar 2)"
391391
(expect (clojure-find-def) :to-equal '("defn-" "foo"))))
392392
(it "should recognize def...-, with or without metadata"
393+
(with-clojure-buffer-point
394+
"(def foo 1)
395+
(def- bar| 5)
396+
(def baz 2)"
397+
(expect (clojure-find-def) :to-equal '("def-" "bar")))
398+
(with-clojure-buffer-point
399+
"(def foo 1)
400+
(deftest- bar |[x y z] z)
401+
(def baz 2)"
402+
(expect (clojure-find-def) :to-equal '("deftest-" "bar")))
403+
(with-clojure-buffer-point
404+
"(def foo 1)
405+
(defxyz- bar| 5)
406+
(def baz 2)"
407+
(expect (clojure-find-def) :to-equal '("defxyz-" "bar")))
408+
(with-clojure-buffer-point
409+
"(def foo 1)
410+
(defn-n- bar| [x y z] z)
411+
(def baz 2)"
412+
(expect (clojure-find-def) :to-equal '("defn-n-" "bar")))
413+
(with-clojure-buffer-point
414+
"(def foo 1)
415+
(defn-n- ^:private bar |[x y z] z)"
416+
(expect (clojure-find-def) :to-equal '("defn-n-" "bar")))
393417
(with-clojure-buffer-point
394418
"(def-n- |^{:doc \"A function\"} foo [] 1)
395-
(defn- ^:private bar 2)"
396-
(expect (clojure-find-def) :to-equal '("def-n-" "foo")))))
419+
(def- ^:private bar 2)"
420+
(expect (clojure-find-def) :to-equal '("def-n-" "foo")))
421+
(with-clojure-buffer-point
422+
"(def foo 1)
423+
(defn-n- ^{:|a {}} complex-metadata |[x y z] z)
424+
(def bar 2)"
425+
(expect (clojure-find-def) :to-equal '("defn-n-" "complex-metadata")))))
397426

398427
(provide 'clojure-mode-util-test)
399428

0 commit comments

Comments
 (0)