Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpx/lua-cjson.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMark Pulford <mark@kyne.com.au>2011-12-31 11:58:00 +0400
committerMark Pulford <mark@kyne.com.au>2011-12-31 11:58:00 +0400
commit759bdd234f24eb5878a4185cdee885f60b3f809f (patch)
tree3856e53ad7088cc499345c2f0c260e8ab8dcac66 /tests
parentc597226e9f79feaa44949794cfd5933ca632e009 (diff)
Remove redundant comment from test.lua
Diffstat (limited to 'tests')
-rwxr-xr-xtests/test.lua7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/test.lua b/tests/test.lua
index 6cb5666..f471289 100755
--- a/tests/test.lua
+++ b/tests/test.lua
@@ -92,7 +92,6 @@ local encode_simple_tests = {
{ json.encode, { "hello" }, true, { '"hello"' } },
}
-
local decode_numeric_tests = {
{ json.decode, { '[ 0.0, -1, 0.3e-3, 1023.2 ]' },
true, { { 0.0, -1, 0.0003, 1023.2 } } },
@@ -228,12 +227,6 @@ print(string.format("Testing Lua CJSON version %s\n", json.version))
run_test_group("decode simple value", decode_simple_tests)
run_test_group("encode simple value", encode_simple_tests)
run_test_group("decode numeric", decode_numeric_tests)
-
--- INCLUDE:
--- - Sparse array exception..
--- - ..
--- json.encode_sparse_array(true, 2, 3)
-
run_test_group("encode table", encode_table_tests)
run_test_group("decode error", decode_error_tests)
run_test_group("encode error", encode_error_tests)