diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 05:48:59 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 05:48:59 +0000 |
commit | c484829272cd13a738e35412498e12f2c9a194ac (patch) | |
tree | a1f5ec09629ee895bd3963fa8820b45f2f4c574b /test/yaml/quoted-string/input.yaml | |
parent | Initial commit. (diff) | |
download | liborcus-c484829272cd13a738e35412498e12f2c9a194ac.tar.xz liborcus-c484829272cd13a738e35412498e12f2c9a194ac.zip |
Adding upstream version 0.19.2.upstream/0.19.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'test/yaml/quoted-string/input.yaml')
-rw-r--r-- | test/yaml/quoted-string/input.yaml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/yaml/quoted-string/input.yaml b/test/yaml/quoted-string/input.yaml new file mode 100644 index 0000000..d2b50e5 --- /dev/null +++ b/test/yaml/quoted-string/input.yaml @@ -0,0 +1,22 @@ +--- +"I am quoted: ~ " : "Here is another quote." +list with quoted string values : + - "1 2 3" + - "null" + - "true" + - "false" + - "#hashtag" + - "\"quoted inside\"" + - "'single quote inside'" + - "Japan's finest beer" +'single quoted string values' : + - '8.8.8.8' + - '''single quote inside''' + - 'prefix ''quoted'' suffix' + - '"double quote"' + - 'before "quote" after' + - 'http://www.google.com' + - '''''''' # equivalent of "'''" + - ' '' '' '' ' # equivalent of " ' ' ' " + - '#hashtag' + |