aboutsummaryrefslogtreecommitdiff
path: root/unit-tests/lexer/quoting.test
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-09-03 16:37:32 +0200
committerKaren Arutyunov <karen@codesynthesis.com>2018-09-04 16:29:59 +0300
commit5007870b52aa549971824959a55ad3bb886f09e0 (patch)
treeb0ef7f24c0b9ece2ed23f3c1792f16da324e4171 /unit-tests/lexer/quoting.test
parent09d60452a80d14d9b8bf3a9395860b50683fa1e8 (diff)
Rename .test/test{} to .testscript/testscript{}
Diffstat (limited to 'unit-tests/lexer/quoting.test')
-rw-r--r--unit-tests/lexer/quoting.test108
1 files changed, 0 insertions, 108 deletions
diff --git a/unit-tests/lexer/quoting.test b/unit-tests/lexer/quoting.test
deleted file mode 100644
index 708e904..0000000
--- a/unit-tests/lexer/quoting.test
+++ /dev/null
@@ -1,108 +0,0 @@
-# file : unit-tests/lexer/quoting.test
-# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
-# license : MIT; see accompanying LICENSE file
-
-test.options += -q
-
-: unquoted
-:
-$* <'foo' >>EOO
-'foo'
-<newline>
-EOO
-
-: comp
-:
-{
- : single
- :
- $* <":'foo':" >>EOO
- :
- 'foo' [S/C]
- :
- <newline>
- EOO
-
- : double
- :
- $* <':"foo":' >>EOO
- :
- 'foo' [D/C]
- :
- <newline>
- EOO
-
- : single-empty
- :
- $* <"''" >>EOO
- '' [S/C]
- <newline>
- EOO
-
- : double-empty
- :
- $* <'""' >>EOO
- '' [D/C]
- <newline>
- EOO
-}
-
-: part
-{
- : quoted
- {
- : start
- : Token start already quoted
- :
- $* <'"$foo"' >>EOO
- '' [D/P]
- $ [D/C]
- 'foo' [D/P]
- <newline>
- EOO
-
- : end
- : Token end still quoted
- :
- $* <'"foo$"' >>EOO
- 'foo' [D/P]
- $ [D/C]
- '' [D/P]
- <newline>
- EOO
- }
-
- : unquoted
- {
- : start
- : Token starts with unquoted character
- :
- $* <'f"oo"' >>EOO
- 'foo' [D/P]
- <newline>
- EOO
-
- : end
- : Token continous with unquoted character
- :
- $* <'"fo"o' >>EOO
- 'foo' [D/P]
- <newline>
- EOO
-
- : escape
- : Token continous with unquoted escaped character
- :
- $* <'"fo"\"' >>EOO
- 'fo"' [D/P]
- <newline>
- EOO
- }
-}
-
-: mixed
-:
-$* <"\"fo\"'o'" >>EOO
-'foo' [M/P]
-<newline>
-EOO