aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/control/parser/synthesis.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/test/lux/control/parser/synthesis.lux')
-rw-r--r--stdlib/source/test/lux/control/parser/synthesis.lux32
1 files changed, 16 insertions, 16 deletions
diff --git a/stdlib/source/test/lux/control/parser/synthesis.lux b/stdlib/source/test/lux/control/parser/synthesis.lux
index dc341a44f..4d6a359da 100644
--- a/stdlib/source/test/lux/control/parser/synthesis.lux
+++ b/stdlib/source/test/lux/control/parser/synthesis.lux
@@ -51,10 +51,10 @@
(def: random-environment
(Random (Environment Synthesis))
- (do {@ random.monad}
- [size (:: @ map (n.% 5) random.nat)]
+ (do {! random.monad}
+ [size (:: ! map (n.% 5) random.nat)]
(|> ..random-variable
- (:: @ map (|>> synthesis.variable))
+ (:: ! map (|>> synthesis.variable))
(random.list size))))
(def: valid-frac
@@ -65,7 +65,7 @@
Test
(`` ($_ _.and
(~~ (template [<query> <check> <random> <synthesis> <equivalence>]
- [(do {@ random.monad}
+ [(do {! random.monad}
[expected <random>
dummy (|> <random> (random.filter (|>> (:: <equivalence> = expected) not)))]
($_ _.and
@@ -81,7 +81,7 @@
(exception.match? /.cannot-parse error))))))))]
[/.bit /.bit! random.bit synthesis.bit bit.equivalence]
- [/.i64 /.i64! (:: @ map .i64 random.nat) synthesis.i64 i64.equivalence]
+ [/.i64 /.i64! (:: ! map .i64 random.nat) synthesis.i64 i64.equivalence]
[/.f64 /.f64! ..valid-frac synthesis.f64 frac.equivalence]
[/.text /.text! (random.unicode 1) synthesis.text text.equivalence]
[/.local /.local! random.nat synthesis.variable/local n.equivalence]
@@ -93,9 +93,9 @@
(def: complex
Test
($_ _.and
- (do {@ random.monad}
+ (do {! random.monad}
[expected-bit random.bit
- expected-i64 (:: @ map .i64 random.nat)
+ expected-i64 (:: ! map .i64 random.nat)
expected-f64 ..valid-frac
expected-text (random.unicode 1)]
(_.cover [/.tuple]
@@ -113,7 +113,7 @@
(list (synthesis.text expected-text)))
(!expect (^multi (#try.Failure error)
(exception.match? /.cannot-parse error)))))))
- (do {@ random.monad}
+ (do {! random.monad}
[arity random.nat
expected-environment ..random-environment
expected-body (random.unicode 1)]
@@ -140,8 +140,8 @@
(<| (_.covering /._)
(_.with-cover [/.Parser])
($_ _.and
- (do {@ random.monad}
- [expected (:: @ map (|>> synthesis.i64) random.nat)]
+ (do {! random.monad}
+ [expected (:: ! map (|>> synthesis.i64) random.nat)]
(_.cover [/.run /.any]
(|> (/.run /.any (list expected))
(!expect (^multi (#try.Success actual)
@@ -150,22 +150,22 @@
(|> (/.run /.any (list))
(!expect (^multi (#try.Failure error)
(exception.match? /.empty-input error)))))
- (do {@ random.monad}
- [expected (:: @ map (|>> synthesis.i64) random.nat)]
+ (do {! random.monad}
+ [expected (:: ! map (|>> synthesis.i64) random.nat)]
(_.cover [/.unconsumed-input]
(|> (/.run /.any (list expected expected))
(!expect (^multi (#try.Failure error)
(exception.match? /.unconsumed-input error))))))
- (do {@ random.monad}
- [dummy (:: @ map (|>> synthesis.i64) random.nat)]
+ (do {! random.monad}
+ [dummy (:: ! map (|>> synthesis.i64) random.nat)]
(_.cover [/.end! /.expected-empty-input]
(and (|> (/.run /.end! (list))
(!expect (#try.Success _)))
(|> (/.run /.end! (list dummy))
(!expect (^multi (#try.Failure error)
(exception.match? /.expected-empty-input error)))))))
- (do {@ random.monad}
- [dummy (:: @ map (|>> synthesis.i64) random.nat)]
+ (do {! random.monad}
+ [dummy (:: ! map (|>> synthesis.i64) random.nat)]
(_.cover [/.end?]
(and (|> (/.run /.end? (list))
(!expect (#try.Success #1)))