more tests
This commit is contained in:
parent
836ac94afe
commit
937d88e009
4 changed files with 88 additions and 0 deletions
13
stdex/arr1.toml
Normal file
13
stdex/arr1.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
integers = [ 1, 2, 3 ]
|
||||
colors = [ "red", "yellow", "green" ]
|
||||
nested_arrays_of_ints = [ [ 1, 2 ], [3, 4, 5] ]
|
||||
nested_mixed_array = [ [ 1, 2 ], ["a", "b", "c"] ]
|
||||
string_array = [ "all", 'strings', """are the same""", '''type''' ]
|
||||
|
||||
# Mixed-type arrays are allowed
|
||||
numbers = [ 0.1, 0.2, 0.5, 1, 2, 5 ]
|
||||
contributors = [
|
||||
"Foo Bar <foo@example.com>",
|
||||
{ name = "Baz Qux", email = "bazqux@example.com", url = "https://example.com/bazqux" }
|
||||
]
|
||||
|
56
stdex/arr1.toml.res
Normal file
56
stdex/arr1.toml.res
Normal file
|
@ -0,0 +1,56 @@
|
|||
{
|
||||
integers = [
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
],
|
||||
colors = [
|
||||
"red",
|
||||
"yellow",
|
||||
"green",
|
||||
],
|
||||
nested_arrays_of_ints = [
|
||||
[
|
||||
1,
|
||||
2,
|
||||
],
|
||||
[
|
||||
3,
|
||||
4,
|
||||
5,
|
||||
],
|
||||
],
|
||||
nested_mixed_array = [
|
||||
[
|
||||
1,
|
||||
2,
|
||||
],
|
||||
[
|
||||
"a",
|
||||
"b",
|
||||
"c",
|
||||
],
|
||||
],
|
||||
string_array = [
|
||||
"all",
|
||||
"strings",
|
||||
"are the same",
|
||||
"type",
|
||||
],
|
||||
numbers = [
|
||||
0.100000,
|
||||
0.200000,
|
||||
0.500000,
|
||||
1,
|
||||
2,
|
||||
5,
|
||||
],
|
||||
contributors = [
|
||||
"Foo Bar <foo@example.com>",
|
||||
{
|
||||
name = "Baz Qux",
|
||||
email = "bazqux@example.com",
|
||||
url = "https://example.com/bazqux",
|
||||
},
|
||||
],
|
||||
}
|
8
stdex/arr2.toml
Normal file
8
stdex/arr2.toml
Normal file
|
@ -0,0 +1,8 @@
|
|||
integers2 = [
|
||||
1, 2, 3
|
||||
]
|
||||
|
||||
integers3 = [
|
||||
1,
|
||||
2, # this is ok
|
||||
]
|
11
stdex/arr2.toml.res
Normal file
11
stdex/arr2.toml.res
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
integers2 = [
|
||||
1,
|
||||
2,
|
||||
3,
|
||||
],
|
||||
integers3 = [
|
||||
1,
|
||||
2,
|
||||
],
|
||||
}
|
Loading…
Reference in a new issue