aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2019-11-09 21:03:18 +1000
committerSteve Bennett <steveb@workware.net.au>2019-11-09 21:06:57 +1000
commit7bb4dffaa22b9d90982a561f464d54a7f20c2032 (patch)
tree2f94cb0d63f128ac99ebcf1c5948eed52b49157a /tests
parentdd064e670daf910fa50e138ec0c36822405b60f5 (diff)
downloadjimtcl-7bb4dffaa22b9d90982a561f464d54a7f20c2032.zip
jimtcl-7bb4dffaa22b9d90982a561f464d54a7f20c2032.tar.gz
jimtcl-7bb4dffaa22b9d90982a561f464d54a7f20c2032.tar.bz2
json: Fix decode schema for list obj
Signed-off-by: Steve Bennett <steveb@workware.net.au>
Diffstat (limited to 'tests')
-rw-r--r--tests/json.test3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/json.test b/tests/json.test
index 066cc0f..8dfa567 100644
--- a/tests/json.test
+++ b/tests/json.test
@@ -95,6 +95,9 @@ test json-2.8 {schema tests} {
lindex [json::decode -schema {[1, 2, true, false]}] 1
} {mixed num num bool bool}
+test json-2.9 {schema tests} {
+ lindex [json::decode -schema {[{a:1},{b:2}]}] 1
+} {mixed {obj a num} {obj b num}}
unset -nocomplain json