Skip to content

Commit

Permalink
Fix #1 - Add test for uiri/toml#115
Browse files Browse the repository at this point in the history
  • Loading branch information
uiri committed Aug 27, 2017
1 parent 8b87814 commit aecf4e4
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
10 changes: 10 additions & 0 deletions tests/valid/table-array-table-array.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"a": [
{
"b": [
{ "c" : { "d": {"type": "string", "value": "val0" } } },
{ "c" : { "d": {"type": "string", "value": "val1" } } }
]
}
]
}
7 changes: 7 additions & 0 deletions tests/valid/table-array-table-array.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[[a]]
[[a.b]]
[a.b.c]
d = "val0"
[[a.b]]
[a.b.c]
d = "val1"

0 comments on commit aecf4e4

Please sign in to comment.