diff options
Diffstat (limited to 'tests/testdata/jsontest.json')
-rw-r--r-- | tests/testdata/jsontest.json | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/testdata/jsontest.json b/tests/testdata/jsontest.json new file mode 100644 index 000000000..3a815e50f --- /dev/null +++ b/tests/testdata/jsontest.json @@ -0,0 +1,26 @@ +// Simple JSON test file +// (c) 2011 Andreas Rumpf + +/* a long comment */ + +{ + "key1": null, + "obj": {"1": 2, "5": 4}, + + "key2": [ + {}, + { }, + [], + + [ // empty array + ], + + -1e10 // another comment + + + ] , + "keyÄÖöoß\u00DF": false +} + +// [{}, {899: 12, "x": "y"}, [], 123, 89, 89, "xyz", null, [], [], [1, 2, 3]] + |