mirror of https://github.com/kdl-org/kdl.git
tests: adjust bare identifier inputs to match spec. (#168)
/ is not a valid identifier character. This updates unusual_chars_in_bare_id.kdl to only include unusual but valid identifier characters, and adds separate invalid input tests for non-identifier characters. Fixes #166
This commit is contained in:
parent
8ae4ae648e
commit
0bbe723eb5
|
|
@ -1 +1 @@
|
|||
foo123~!@#$%^&*.:'|/?+ "weeee"
|
||||
foo123~!@#$%^&*.:'|?+ "weeee"
|
||||
|
|
|
|||
|
|
@ -0,0 +1 @@
|
|||
foo123\bar "weeee"
|
||||
|
|
@ -0,0 +1 @@
|
|||
foo123{bar}foo "weeee"
|
||||
|
|
@ -0,0 +1 @@
|
|||
foo123<bar>foo "weeee"
|
||||
|
|
@ -0,0 +1 @@
|
|||
foo123,bar "weeee"
|
||||
|
|
@ -0,0 +1 @@
|
|||
foo123(bar)foo "weeee"
|
||||
|
|
@ -0,0 +1 @@
|
|||
foo123"bar "weeee"
|
||||
|
|
@ -0,0 +1 @@
|
|||
foo123/bar "weeee"
|
||||
|
|
@ -0,0 +1 @@
|
|||
foo123[bar]foo "weeee"
|
||||
|
|
@ -1 +1 @@
|
|||
foo123~!@#$%^&*.:'|/?+ "weeee"
|
||||
foo123~!@#$%^&*.:'|?+ "weeee"
|
||||
|
|
|
|||
Loading…
Reference in New Issue