aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/abstract/monad.lux
diff options
context:
space:
mode:
authorEduardo Julian2021-08-18 03:29:15 -0400
committerEduardo Julian2021-08-18 03:29:15 -0400
commite00ba096c8837abe85d366e0c1293c09dbe84d81 (patch)
treedc1f0955d4461ae30bb4945cddd74c462f1aee98 /stdlib/source/test/lux/abstract/monad.lux
parent3289b9dcf9d5d1c1e5c380e3185065c8fd32535f (diff)
Some bug fixes.
Diffstat (limited to 'stdlib/source/test/lux/abstract/monad.lux')
-rw-r--r--stdlib/source/test/lux/abstract/monad.lux24
1 files changed, 12 insertions, 12 deletions
diff --git a/stdlib/source/test/lux/abstract/monad.lux b/stdlib/source/test/lux/abstract/monad.lux
index 0fc605a0c..051f63a5c 100644
--- a/stdlib/source/test/lux/abstract/monad.lux
+++ b/stdlib/source/test/lux/abstract/monad.lux
@@ -21,30 +21,30 @@
(<| (_.covering /._)
($_ _.and
(_.cover [/.do]
- (n.= (inc mono)
+ (n.= (++ mono)
(: (Identity Nat)
(/.do identity.monad
[sample (in mono)]
- (in (inc sample))))))
- (_.cover [/.bind]
- (n.= (inc mono)
+ (in (++ sample))))))
+ (_.cover [/.then]
+ (n.= (++ mono)
(: (Identity Nat)
- (/.bind identity.monad
- (|>> inc (\ identity.monad in))
+ (/.then identity.monad
+ (|>> ++ (\ identity.monad in))
(\ identity.monad in mono)))))
- (_.cover [/.seq]
+ (_.cover [/.all]
(\ (list.equivalence n.equivalence) =
- (list\map inc poly)
+ (list\map ++ poly)
(|> poly
- (list\map (|>> inc (\ identity.monad in)))
+ (list\map (|>> ++ (\ identity.monad in)))
(: (List (Identity Nat)))
- (/.seq identity.monad)
+ (/.all identity.monad)
(: (Identity (List Nat))))))
(_.cover [/.map]
(\ (list.equivalence n.equivalence) =
- (list\map inc poly)
+ (list\map ++ poly)
(|> poly
- (/.map identity.monad (|>> inc (\ identity.monad in)))
+ (/.map identity.monad (|>> ++ (\ identity.monad in)))
(: (Identity (List Nat))))))
(_.cover [/.only]
(\ (list.equivalence n.equivalence) =