Skip to content

Commit b75a77e

Browse files
author
Yannick Scherer
committed
add tests for symbols with boundary character inside. (see #25).
1 parent b7897b9 commit b75a77e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/rewrite_clj/parser_test.clj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,17 @@
4949
":1.5" :1.5
5050
":1.5.0" :1.5.0
5151
":ns/key" :ns/key
52+
":key:key" :key:key
5253
"::1.5.1" ::1.5.1
5354
"::key" ::key
5455
"::xyz/key" :xyz/key
5556
":x'" :x'
5657
"sym" 'sym
5758
"sym#" 'sym#
5859
"sym'" 'sym'
60+
"sym'sym" 'sym'sym
61+
"sym:sym" 'sym:sym
62+
"sym:" (symbol "sym:")
5963
"\"string\"" "string")
6064

6165
(tabular

0 commit comments

Comments
 (0)