aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/data/collection/row.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/test/lux/data/collection/row.lux26
1 files changed, 13 insertions, 13 deletions
diff --git a/stdlib/source/test/lux/data/collection/row.lux b/stdlib/source/test/lux/data/collection/row.lux
index 17dae6904..46e305b8d 100644
--- a/stdlib/source/test/lux/data/collection/row.lux
+++ b/stdlib/source/test/lux/data/collection/row.lux
@@ -31,18 +31,18 @@
(do {! random.monad}
[size (\ ! map (n.% 100) random.nat)]
($_ _.and
- (_.with-cover [/.equivalence]
- ($equivalence.spec (/.equivalence n.equivalence) (random.row size random.nat)))
- (_.with-cover [/.monoid]
- ($monoid.spec (/.equivalence n.equivalence) /.monoid (random.row size random.nat)))
- (_.with-cover [/.fold]
- ($fold.spec /\wrap /.equivalence /.fold))
- (_.with-cover [/.functor]
- ($functor.spec /\wrap /.equivalence /.functor))
- (_.with-cover [/.apply]
- ($apply.spec /\wrap /.equivalence /.apply))
- (_.with-cover [/.monad]
- ($monad.spec /\wrap /.equivalence /.monad))
+ (_.for [/.equivalence]
+ ($equivalence.spec (/.equivalence n.equivalence) (random.row size random.nat)))
+ (_.for [/.monoid]
+ ($monoid.spec (/.equivalence n.equivalence) /.monoid (random.row size random.nat)))
+ (_.for [/.fold]
+ ($fold.spec /\wrap /.equivalence /.fold))
+ (_.for [/.functor]
+ ($functor.spec /\wrap /.equivalence /.functor))
+ (_.for [/.apply]
+ ($apply.spec /\wrap /.equivalence /.apply))
+ (_.for [/.monad]
+ ($monad.spec /\wrap /.equivalence /.monad))
)))
(def: whole
@@ -132,7 +132,7 @@
(def: #export test
Test
(<| (_.covering /._)
- (_.with-cover [/.Row])
+ (_.for [/.Row])
(do {! random.monad}
[size (\ ! map (|>> (n.% 100) inc) random.nat)]
($_ _.and