mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-18 21:29:19 +02:00
Add JSON tests
This commit is contained in:
parent
e79d2aefea
commit
64d04f0638
2 changed files with 5 additions and 0 deletions
|
@ -8,6 +8,9 @@
|
|||
(test 1 (parse-json "1"))
|
||||
(test 1.5 (parse-json "1.5"))
|
||||
(test 1000.0 (parse-json "1e3"))
|
||||
(test "á" (parse-json "\"\\u00e1\""))
|
||||
(test "𐐷" (parse-json "\"\\uD801\\uDC37\""))
|
||||
(test "😐" (parse-json "\"\\uD83D\\uDE10\""))
|
||||
(test '((glossary
|
||||
(title . "example glossary")
|
||||
(GlossDiv
|
||||
|
|
|
@ -40,6 +40,7 @@
|
|||
(rename (chibi generic-test) (run-tests run-generic-tests))
|
||||
(rename (chibi io-test) (run-tests run-io-tests))
|
||||
(rename (chibi iset-test) (run-tests run-iset-tests))
|
||||
(rename (chibi json-test) (run-tests run-json-tests))
|
||||
(rename (chibi log-test) (run-tests run-log-tests))
|
||||
(rename (chibi loop-test) (run-tests run-loop-tests))
|
||||
(rename (chibi match-test) (run-tests run-match-tests))
|
||||
|
@ -100,6 +101,7 @@
|
|||
(run-generic-tests)
|
||||
(run-io-tests)
|
||||
(run-iset-tests)
|
||||
(run-json-tests)
|
||||
(run-log-tests)
|
||||
(run-loop-tests)
|
||||
(run-match-tests)
|
||||
|
|
Loading…
Add table
Reference in a new issue