summaryrefslogtreecommitdiff
path: root/node_modules/yamlparser/tests/example.yml
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/yamlparser/tests/example.yml')
-rw-r--r--node_modules/yamlparser/tests/example.yml62
1 files changed, 62 insertions, 0 deletions
diff --git a/node_modules/yamlparser/tests/example.yml b/node_modules/yamlparser/tests/example.yml
new file mode 100644
index 0000000..8bd9375
--- /dev/null
+++ b/node_modules/yamlparser/tests/example.yml
@@ -0,0 +1,62 @@
+---
+# Hello World!
+
+chart:
+ - {x: 1993, y: 5}
+
+ - {x: 1994, y: 5}
+
+ - {x: 1995, y: 5}
+
+ - {x: 1996, y: 5}
+
+multi-level:
+ - array1:
+ - 1
+ - 2
+ - 3
+ - 4
+ - 5
+ - array2: { teste: ah, bah: 123 }
+ - array3:
+ - array31:
+ - array311: [0, 1, 2, 3]
+
+receipt: Oz-Ware Purchase Invoice # isto é um comentário
+date: 2007-08-06
+customer:
+ given: Dorothy
+ family: Gale
+ pessoa:
+ married: false
+ money: .NaN
+ name: {first: "Diogo", last: "Costa"}
+ surname: Costa
+
+items:
+ - part_no: A4786
+ descrip: Water Bucket (Filled)
+ price: 1.47
+ quantity: 4
+
+ - part_no: E1628
+ descrip: High Heeled "Ruby" Slippers
+ size: 8
+ price: 100.27
+ quantity: 1
+
+bill-to: &id001
+ street: |
+ 123 Tornado Alley
+ Suite 16
+ city: East Centerville
+ state: KS
+
+ship-to: *id001
+
+specialDelivery: >
+ Follow the Yellow Brick
+ Road to the Emerald City.
+ Pay no attention to the man
+ behind the curtain.
+...