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

28 lines
469 B
YAML

---
- name: Spec Example 7.2. Empty Content
from: http://www.yaml.org/spec/1.2/spec.html#id2786720
tags: spec flow scalar tag
yaml: |
{
foo : !!str,
!!str : bar,
}
tree: |
+STR
+DOC
+MAP {}
=VAL :foo
=VAL <tag:yaml.org,2002:str> :
=VAL <tag:yaml.org,2002:str> :
=VAL :bar
-MAP
-DOC
-STR
json: |
{
"foo": "",
"": "bar"
}
dump: |
foo: !!str
!!str : bar