diff options
| author | Shulhan <ms@kilabit.info> | 2023-11-10 15:07:52 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2023-11-11 18:37:15 +0700 |
| commit | d8b7a4e509a641ea2949646c5a3577bc848fea30 (patch) | |
| tree | 09f9bb2d3f3afe83a17fc2c1e85cba606da276b7 /testdata/script_joinStatements_test.data | |
| parent | cf6d0e5bb0baf5acbc70f8084d087e3a41b5452e (diff) | |
| download | awwan-d8b7a4e509a641ea2949646c5a3577bc848fea30.tar.xz | |
script: respect spaces when joining multi lines command
If a multi lines command does not have spaces or have multiple
spaces, join them as is.
For example,
a\
b
should return the value as "ab", while
a \
b
should return "a b".
Diffstat (limited to 'testdata/script_joinStatements_test.data')
| -rw-r--r-- | testdata/script_joinStatements_test.data | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testdata/script_joinStatements_test.data b/testdata/script_joinStatements_test.data new file mode 100644 index 0000000..67a36b9 --- /dev/null +++ b/testdata/script_joinStatements_test.data @@ -0,0 +1,14 @@ +Test data for script joinStatements. + +>>> case_0 + +a +b \ +c +d \ +e \ +f +g\ +h,i +j\ + k |
