|
390 | 390 | (defn- ^:private bar 2)"
|
391 | 391 | (expect (clojure-find-def) :to-equal '("defn-" "foo"))))
|
392 | 392 | (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"))) |
393 | 417 | (with-clojure-buffer-point
|
394 | 418 | "(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"))))) |
397 | 426 |
|
398 | 427 | (provide 'clojure-mode-util-test)
|
399 | 428 |
|
|
0 commit comments