Skip to content

Commit df6be9f

Browse files
committedJun 26, 2016
Add array table test
1 parent 3164d4c commit df6be9f

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed
 

‎tests/fruit.toml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[[fruit.blah]]
2+
name = "apple"
3+
4+
[fruit.blah.physical]
5+
color = "red"
6+
shape = "round"
7+
8+
[[fruit.blah]]
9+
name = "banana"
10+
11+
[fruit.blah.physical]
12+
color = "yellow"
13+
shape = "bent"

‎tests/fruit.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
fruit:
2+
blah:
3+
-
4+
name: "apple"
5+
physical:
6+
color: "red"
7+
shape: "round"
8+
-
9+
name: "banana"
10+
physical:
11+
color: "yellow"
12+
shape: "bent"
13+

0 commit comments

Comments
 (0)
Please sign in to comment.