saphyr-serde/parser/tests/yaml-test-suite/src/MZX3.yaml
2024-10-12 16:15:46 +02:00

31 lines
498 B
YAML

---
- name: Non-Specific Tags on Scalars
from: NimYAML tests
tags: folded scalar
yaml: |
- plain
- "double quoted"
- 'single quoted'
- >
block
- plain again
tree: |
+STR
+DOC
+SEQ
=VAL :plain
=VAL "double quoted
=VAL 'single quoted
=VAL >block\n
=VAL :plain again
-SEQ
-DOC
-STR
json: |
[
"plain",
"double quoted",
"single quoted",
"block\n",
"plain again"
]