diff options
Diffstat (limited to 'test/fixtures/json/nested.json')
-rw-r--r-- | test/fixtures/json/nested.json | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/fixtures/json/nested.json b/test/fixtures/json/nested.json new file mode 100644 index 0000000..98951fc --- /dev/null +++ b/test/fixtures/json/nested.json @@ -0,0 +1,21 @@ +{ + "@typeid": "TestObject", + "flt": 1, + "ptr": { + "@typeid": "TestObject", + "flt": 2, + "ptr": { + "@typeid": "TestObject", + "flt": 3, + "ptr": { + "@typeid": "TestObject", + "flt": 4, + "ptr": null, + "str": "four" + }, + "str": "three" + }, + "str": "two" + }, + "str": "one" +} |