diff options
Diffstat (limited to 'src/ext_depends/D-YAML/test/spec 1.1/spec-06-07.yaml')
-rw-r--r-- | src/ext_depends/D-YAML/test/spec 1.1/spec-06-07.yaml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/ext_depends/D-YAML/test/spec 1.1/spec-06-07.yaml b/src/ext_depends/D-YAML/test/spec 1.1/spec-06-07.yaml new file mode 100644 index 0000000..ab210d8 --- /dev/null +++ b/src/ext_depends/D-YAML/test/spec 1.1/spec-06-07.yaml @@ -0,0 +1,30 @@ +%YAML 1.1 +--- +- name: spec-06-07 + yaml: "- foo\n \n bar\n- |-\n foo\n \n bar\n \n" + tree: | + +STR + +DOC + +SEQ + =VAL :foo\nbar + =VAL |foo\n\nbar + -SEQ + -DOC + -STR +- name: spec-06-07-canonical + yaml: | + %YAML 1.1 + --- + !!seq [ + !!str "foo\nbar", + !!str "foo\n\nbar" + ] + tree: | + +STR + +DOC --- + +SEQ [] <tag:yaml.org,2002:seq> + =VAL <tag:yaml.org,2002:str> "foo\nbar + =VAL <tag:yaml.org,2002:str> "foo\n\nbar + -SEQ + -DOC + -STR |