aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/abstract/monad/free.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/test/lux/abstract/monad/free.lux20
1 files changed, 10 insertions, 10 deletions
diff --git a/stdlib/source/test/lux/abstract/monad/free.lux b/stdlib/source/test/lux/abstract/monad/free.lux
index 5cae8ef16..5f71df542 100644
--- a/stdlib/source/test/lux/abstract/monad/free.lux
+++ b/stdlib/source/test/lux/abstract/monad/free.lux
@@ -43,15 +43,15 @@
(def: #export test
Test
(<| (_.covering /._)
- (_.with-cover [/.Free])
+ (_.for [/.Free])
($_ _.and
- (_.with-cover [/.functor]
- ($functor.spec ..injection ..comparison (: (Functor (/.Free List))
- (/.functor list.functor))))
- (_.with-cover [/.apply]
- ($apply.spec ..injection ..comparison (: (Apply (/.Free List))
- (/.apply list.functor))))
- (_.with-cover [/.monad]
- ($monad.spec ..injection ..comparison (: (Monad (/.Free List))
- (/.monad list.functor))))
+ (_.for [/.functor]
+ ($functor.spec ..injection ..comparison (: (Functor (/.Free List))
+ (/.functor list.functor))))
+ (_.for [/.apply]
+ ($apply.spec ..injection ..comparison (: (Apply (/.Free List))
+ (/.apply list.functor))))
+ (_.for [/.monad]
+ ($monad.spec ..injection ..comparison (: (Monad (/.Free List))
+ (/.monad list.functor))))
)))