aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ext_depends/D-YAML/test/spec 1.1/spec-09-20.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext_depends/D-YAML/test/spec 1.1/spec-09-20.yaml')
-rw-r--r--src/ext_depends/D-YAML/test/spec 1.1/spec-09-20.yaml36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/ext_depends/D-YAML/test/spec 1.1/spec-09-20.yaml b/src/ext_depends/D-YAML/test/spec 1.1/spec-09-20.yaml
new file mode 100644
index 0000000..40b1883
--- /dev/null
+++ b/src/ext_depends/D-YAML/test/spec 1.1/spec-09-20.yaml
@@ -0,0 +1,36 @@
+%YAML 1.1
+---
+- name: spec-09-20
+ yaml: "- |\n detected\n- >\n \n \n # detected\n- |1\n explicit\n- >\n \t\n detected\n"
+ tree: |
+ +STR
+ +DOC
+ +SEQ
+ =VAL |detected\n
+ =VAL >\n\n# detected\n
+ =VAL | explicit\n
+ =VAL >\t\ndetected\n
+ -SEQ
+ -DOC
+ -STR
+- name: spec-09-20-canonical
+ yaml: |
+ %YAML 1.1
+ ---
+ !!seq [
+ !!str "detected\n",
+ !!str "\n\n# detected\n",
+ !!str " explicit\n",
+ !!str "\t\ndetected\n",
+ ]
+ tree: |
+ +STR
+ +DOC ---
+ +SEQ [] <tag:yaml.org,2002:seq>
+ =VAL <tag:yaml.org,2002:str> "detected\n
+ =VAL <tag:yaml.org,2002:str> "\n\n# detected\n
+ =VAL <tag:yaml.org,2002:str> " explicit\n
+ =VAL <tag:yaml.org,2002:str> "\t\ndetected\n
+ -SEQ
+ -DOC
+ -STR