diff options
author | Mark Pulford <mark@kyne.com.au> | 2011-05-03 23:04:22 +0930 |
---|---|---|
committer | Mark Pulford <mark@kyne.com.au> | 2011-05-03 23:04:22 +0930 |
commit | 4146070e69475d5eedcf7a9e3d990e511f46ec7a (patch) | |
tree | 5e6bfa66ee9a1fc4ac4125f349c55a3d7c551e35 /tests/example5.json | |
parent | ce3a769dbdd13571b5b761d933e17e8fe5771739 (diff) | |
download | lua-cjson-4146070e69475d5eedcf7a9e3d990e511f46ec7a.tar.gz lua-cjson-4146070e69475d5eedcf7a9e3d990e511f46ec7a.tar.bz2 lua-cjson-4146070e69475d5eedcf7a9e3d990e511f46ec7a.zip |
Add basic JSON tests and benchmark
Diffstat (limited to 'tests/example5.json')
-rw-r--r-- | tests/example5.json | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/example5.json b/tests/example5.json new file mode 100644 index 0000000..49980ca --- /dev/null +++ b/tests/example5.json | |||
@@ -0,0 +1,27 @@ | |||
1 | {"menu": { | ||
2 | "header": "SVG Viewer", | ||
3 | "items": [ | ||
4 | {"id": "Open"}, | ||
5 | {"id": "OpenNew", "label": "Open New"}, | ||
6 | null, | ||
7 | {"id": "ZoomIn", "label": "Zoom In"}, | ||
8 | {"id": "ZoomOut", "label": "Zoom Out"}, | ||
9 | {"id": "OriginalView", "label": "Original View"}, | ||
10 | null, | ||
11 | {"id": "Quality"}, | ||
12 | {"id": "Pause"}, | ||
13 | {"id": "Mute"}, | ||
14 | null, | ||
15 | {"id": "Find", "label": "Find..."}, | ||
16 | {"id": "FindAgain", "label": "Find Again"}, | ||
17 | {"id": "Copy"}, | ||
18 | {"id": "CopyAgain", "label": "Copy Again"}, | ||
19 | {"id": "CopySVG", "label": "Copy SVG"}, | ||
20 | {"id": "ViewSVG", "label": "View SVG"}, | ||
21 | {"id": "ViewSource", "label": "View Source"}, | ||
22 | {"id": "SaveAs", "label": "Save As"}, | ||
23 | null, | ||
24 | {"id": "Help"}, | ||
25 | {"id": "About", "label": "About Adobe CVG Viewer..."} | ||
26 | ] | ||
27 | }} | ||