aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/control/parser/binary.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/test/lux/control/parser/binary.lux')
-rw-r--r--stdlib/source/test/lux/control/parser/binary.lux79
1 files changed, 40 insertions, 39 deletions
diff --git a/stdlib/source/test/lux/control/parser/binary.lux b/stdlib/source/test/lux/control/parser/binary.lux
index 289a80ba9..972078a43 100644
--- a/stdlib/source/test/lux/control/parser/binary.lux
+++ b/stdlib/source/test/lux/control/parser/binary.lux
@@ -1,43 +1,44 @@
(.module:
- [lux (#- primitive)
- ["_" test (#+ Test)]
- ["." type]
- [abstract
- [equivalence (#+ Equivalence)]
- [predicate (#+ Predicate)]
- [monad (#+ do)]]
- [control
- [pipe (#+ case>)]
- ["." try]
- ["." exception]
- ["<>" parser]]
- [data
- ["." binary]
- ["." sum]
- ["." maybe]
- ["." bit]
- ["." name]
- ["." text ("#\." equivalence)
- ["%" format (#+ format)]
- [encoding
- ["." utf8]]]
- ["." format #_
- ["#" binary]]
- [collection
- ["." list]
- ["." row]
- ["." set]]]
- [macro
- ["." code]]
- [math
- ["." random (#+ Random)]
- [number
- ["n" nat]
- ["." i64]
- ["." int]
- ["." rev]
- ["." frac]]]]
- [\\
+ [library
+ [lux (#- primitive)
+ ["_" test (#+ Test)]
+ ["." type]
+ [abstract
+ [equivalence (#+ Equivalence)]
+ [predicate (#+ Predicate)]
+ [monad (#+ do)]]
+ [control
+ [pipe (#+ case>)]
+ ["." try]
+ ["." exception]
+ ["<>" parser]]
+ [data
+ ["." binary]
+ ["." sum]
+ ["." maybe]
+ ["." bit]
+ ["." name]
+ ["." text ("#\." equivalence)
+ ["%" format (#+ format)]
+ [encoding
+ ["." utf8]]]
+ ["." format #_
+ ["#" binary]]
+ [collection
+ ["." list]
+ ["." row]
+ ["." set]]]
+ [macro
+ ["." code]]
+ [math
+ ["." random (#+ Random)]
+ [number
+ ["n" nat]
+ ["." i64]
+ ["." int]
+ ["." rev]
+ ["." frac]]]]]
+ [\\library
["." /]])
(template: (!expect <expectation> <computation>)