File tree 1 file changed +29
-3
lines changed
1 file changed +29
-3
lines changed Original file line number Diff line number Diff line change 23
23
(require 'buttercup )
24
24
(require 'paredit )
25
25
26
- (describe " Interactions with Paredit"
26
+ (describe " Interactions with Paredit: "
27
27
; ; reuse existing when-refactoring-it macro
28
28
(describe " it should insert a space"
29
29
(when-refactoring-it " before lists"
56
56
" foo' ()"
57
57
(paredit-mode)
58
58
(paredit-open-round)))
59
- (describe " should not insert a space"
59
+ (describe " it should not insert a space"
60
60
(when-refactoring-it " for anonymous fn syntax"
61
61
" foo #"
62
62
" foo #()"
81
81
" foo #?"
82
82
" foo #?()"
83
83
(paredit-mode)
84
- (paredit-open-round))))
84
+ (paredit-open-round)))
85
+ (describe " reader tags"
86
+ (when-refactoring-it " should insert a space before strings"
87
+ " #uuid"
88
+ " #uuid \"\" "
89
+ (paredit-mode)
90
+ (paredit-doublequote))
91
+ (when-refactoring-it " should not insert a space before namespaced maps"
92
+ " #::my-ns"
93
+ " #::my-ns{}"
94
+ (paredit-mode)
95
+ (paredit-open-curly))
96
+ (when-refactoring-it " should not insert a space before namespaced maps 2"
97
+ " #::"
98
+ " #::{}"
99
+ (paredit-mode)
100
+ (paredit-open-curly))
101
+ (when-refactoring-it " should not insert a space before namespaced maps 3"
102
+ " #:fully.qualified.ns123.-$#.%*+!"
103
+ " #:fully.qualified.ns123.-$#.%*+!{}"
104
+ (paredit-mode)
105
+ (paredit-open-curly))
106
+ (when-refactoring-it " should not insert a space before tagged vectors"
107
+ " #tag123.-$#.%*+!"
108
+ " #tag123.-$#.%*+![]"
109
+ (paredit-mode)
110
+ (paredit-open-square))))
85
111
86
112
87
113
(describe " Interactions with delete-trailing-whitespace"
You can’t perform that action at this time.
0 commit comments