aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/control/parser/json.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/test/lux/control/parser/json.lux')
-rw-r--r--stdlib/source/test/lux/control/parser/json.lux53
1 files changed, 27 insertions, 26 deletions
diff --git a/stdlib/source/test/lux/control/parser/json.lux b/stdlib/source/test/lux/control/parser/json.lux
index 0a4adcc83..6b6511e15 100644
--- a/stdlib/source/test/lux/control/parser/json.lux
+++ b/stdlib/source/test/lux/control/parser/json.lux
@@ -1,30 +1,31 @@
(.module:
- [lux #*
- ["_" test (#+ Test)]
- [abstract
- [monad (#+ do)]]
- [control
- [pipe (#+ case>)]
- ["." try]
- ["." exception]
- ["<>" parser]]
- [data
- ["." maybe]
- ["." bit]
- ["." text]
- [collection
- ["." list ("#\." functor)]
- ["." set]
- ["." dictionary]
- ["." row (#+ row) ("#\." functor)]]
- [format
- ["." json]]]
- [math
- ["." random (#+ Random)]
- [number
- ["n" nat]
- ["." frac]]]]
- [\\
+ [library
+ [lux #*
+ ["_" test (#+ Test)]
+ [abstract
+ [monad (#+ do)]]
+ [control
+ [pipe (#+ case>)]
+ ["." try]
+ ["." exception]
+ ["<>" parser]]
+ [data
+ ["." maybe]
+ ["." bit]
+ ["." text]
+ [collection
+ ["." list ("#\." functor)]
+ ["." set]
+ ["." dictionary]
+ ["." row (#+ row) ("#\." functor)]]
+ [format
+ ["." json]]]
+ [math
+ ["." random (#+ Random)]
+ [number
+ ["n" nat]
+ ["." frac]]]]]
+ [\\library
["." /]])
(template: (!expect <pattern> <value>)