aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/control/parser/binary.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/test/lux/control/parser/binary.lux46
1 files changed, 23 insertions, 23 deletions
diff --git a/stdlib/source/test/lux/control/parser/binary.lux b/stdlib/source/test/lux/control/parser/binary.lux
index 00ff979d9..330349078 100644
--- a/stdlib/source/test/lux/control/parser/binary.lux
+++ b/stdlib/source/test/lux/control/parser/binary.lux
@@ -99,19 +99,19 @@
(random.list size again))]
($_ random.and
..random_location
- (: (Random (Code' (Ann Location)))
- ($_ random.or
- random.bit
- random.nat
- random.int
- random.rev
- random.safe_frac
- ..random_text
- ..random_symbol
- random_sequence
- random_sequence
- random_sequence
- )))))))
+ (is (Random (Code' (Ann Location)))
+ ($_ random.or
+ random.bit
+ random.nat
+ random.int
+ random.rev
+ random.safe_frac
+ ..random_text
+ ..random_symbol
+ random_sequence
+ random_sequence
+ random_sequence
+ )))))))
(def: random_type
(Random Type)
@@ -282,8 +282,8 @@
(_.cover [/.or format.or]
(|> expected
(format.result (format.or format.bit format.nat))
- (/.result (: (/.Parser (Either Bit Nat))
- (/.or /.bit /.nat)))
+ (/.result (is (/.Parser (Either Bit Nat))
+ (/.or /.bit /.nat)))
(!expect (^.multi {try.#Success actual}
(# (sum.equivalence bit.equivalence n.equivalence) =
expected
@@ -296,8 +296,8 @@
(_.cover [/.invalid_tag]
(|> [tag value]
(format.result (format.and format.bits/8 format.bit))
- (/.result (: (/.Parser (Either Bit Nat))
- (/.or /.bit /.nat)))
+ (/.result (is (/.Parser (Either Bit Nat))
+ (/.or /.bit /.nat)))
(!expect (^.multi {try.#Failure error}
(exception.match? /.invalid_tag error))))))
(do [! random.monad]
@@ -306,12 +306,12 @@
(|> expected
(format.result (format.rec (|>> (format.and format.nat)
(format.or format.any))))
- (/.result (: (/.Parser (List Nat))
- (/.rec
- (function (_ again)
- (/.or /.any
- (<>.and /.nat
- again))))))
+ (/.result (is (/.Parser (List Nat))
+ (/.rec
+ (function (_ again)
+ (/.or /.any
+ (<>.and /.nat
+ again))))))
(!expect (^.multi {try.#Success actual}
(# (list.equivalence n.equivalence) =
expected