Skip to content

Commit 2fa5aae

Browse files
yuhan0bbatsov
authored andcommitted
Move test macros to utils file
1 parent 04267d8 commit 2fa5aae

3 files changed

+38
-38
lines changed

clojure-mode-refactor-add-arity-test.el

-25
Original file line numberDiff line numberDiff line change
@@ -25,31 +25,6 @@
2525
(require 'clojure-mode)
2626
(require 'buttercup)
2727

28-
(defmacro when-refactoring-with-point-it (description before after &rest body)
29-
"Return a buttercup spec.
30-
31-
Like when-refactor-it but also checks whether point is moved to the expected
32-
position.
33-
34-
BEFORE is the buffer string before refactoring, where a pipe (|) represents
35-
point.
36-
37-
AFTER is the expected buffer string after refactoring, where a pipe (|)
38-
represents the expected position of point.
39-
40-
DESCRIPTION is a string with the description of the spec."
41-
`(it ,description
42-
(let* ((after ,after)
43-
(expected-cursor-pos (1+ (s-index-of "|" after)))
44-
(expected-state (delete ?| after)))
45-
(with-clojure-buffer ,before
46-
(goto-char (point-min))
47-
(search-forward "|")
48-
(delete-char -1)
49-
,@body
50-
(expect (buffer-string) :to-equal expected-state)
51-
(expect (point) :to-equal expected-cursor-pos)))))
52-
5328
(describe "clojure-add-arity"
5429

5530
(when-refactoring-with-point-it "should add an arity to a single-arity defn with args on same line"

clojure-mode-sexp-test.el

-13
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,6 @@
2222
(require 'clojure-mode)
2323
(require 'buttercup)
2424

25-
(defmacro with-clojure-buffer-point (text &rest body)
26-
"Run BODY in a temporary clojure buffer with TEXT.
27-
28-
TEXT is a string with a | indicating where point is. The | will be erased
29-
and point left there."
30-
(declare (indent 2))
31-
`(progn
32-
(with-clojure-buffer ,text
33-
(goto-char (point-min))
34-
(re-search-forward "|")
35-
(delete-char -1)
36-
,@body)))
37-
3825
(describe "clojure-top-level-form-p"
3926
(it "should return true when passed the correct form"
4027
(with-clojure-buffer-point

utils/test-helper.el

+38
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,19 @@
4141
(clojure-mode)
4242
,@body))
4343

44+
(defmacro with-clojure-buffer-point (text &rest body)
45+
"Run BODY in a temporary clojure buffer with TEXT.
46+
47+
TEXT is a string with a | indicating where point is. The | will be erased
48+
and point left there."
49+
(declare (indent 2))
50+
`(progn
51+
(with-clojure-buffer ,text
52+
(goto-char (point-min))
53+
(re-search-forward "|")
54+
(delete-char -1)
55+
,@body)))
56+
4457
(defmacro when-refactoring-it (description before after &rest body)
4558
"Return a buttercup spec.
4659
@@ -56,4 +69,29 @@ DESCRIPTION is the description of the spec."
5669
,@body
5770
(expect (buffer-string) :to-equal ,after))))
5871

72+
(defmacro when-refactoring-with-point-it (description before after &rest body)
73+
"Return a buttercup spec.
74+
75+
Like when-refactor-it but also checks whether point is moved to the expected
76+
position.
77+
78+
BEFORE is the buffer string before refactoring, where a pipe (|) represents
79+
point.
80+
81+
AFTER is the expected buffer string after refactoring, where a pipe (|)
82+
represents the expected position of point.
83+
84+
DESCRIPTION is a string with the description of the spec."
85+
`(it ,description
86+
(let* ((after ,after)
87+
(expected-cursor-pos (1+ (s-index-of "|" after)))
88+
(expected-state (delete ?| after)))
89+
(with-clojure-buffer ,before
90+
(goto-char (point-min))
91+
(search-forward "|")
92+
(delete-char -1)
93+
,@body
94+
(expect (buffer-string) :to-equal expected-state)
95+
(expect (point) :to-equal expected-cursor-pos)))))
96+
5997
;;; test-helper.el ends here

0 commit comments

Comments
 (0)