aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/math/number/frac.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/test/lux/math/number/frac.lux')
-rw-r--r--stdlib/source/test/lux/math/number/frac.lux14
1 files changed, 7 insertions, 7 deletions
diff --git a/stdlib/source/test/lux/math/number/frac.lux b/stdlib/source/test/lux/math/number/frac.lux
index 91f44f41b..7b11df2cb 100644
--- a/stdlib/source/test/lux/math/number/frac.lux
+++ b/stdlib/source/test/lux/math/number/frac.lux
@@ -26,7 +26,7 @@
(def: random
(Random Frac)
- (\ random.monad map (|>> (i.% +1,000,000) i.frac) random.int))
+ (\ random.monad each (|>> (i.% +1,000,000) i.frac) random.int))
(def: constant
Test
@@ -52,7 +52,7 @@
Test
(do {! random.monad}
[sample ..random
- shift (\ ! map /.abs ..random)]
+ shift (\ ! each /.abs ..random)]
($_ _.and
(_.cover [/.negative?]
(bit\= (/.negative? sample)
@@ -77,15 +77,15 @@
Test
($_ _.and
(do {! random.monad}
- [expected (\ ! map (n.% 1,000,000) random.nat)]
+ [expected (\ ! each (n.% 1,000,000) random.nat)]
(_.cover [/.nat]
(|> expected n.frac /.nat (n.= expected))))
(do {! random.monad}
- [expected (\ ! map (i.% +1,000,000) random.int)]
+ [expected (\ ! each (i.% +1,000,000) random.int)]
(_.cover [/.int]
(|> expected i.frac /.int (i.= expected))))
(do {! random.monad}
- [expected (\ ! map (|>> (i64.left_shifted 52) .rev)
+ [expected (\ ! each (|>> (i64.left_shifted 52) .rev)
random.nat)]
(_.cover [/.rev]
(|> expected r.frac /.rev (r.= expected))))
@@ -100,8 +100,8 @@
($hash.spec /.hash random.frac))
(_.for [/.order /.<]
($order.spec /.order random.safe_frac))
- (~~ (template [<compose> <monoid>]
- [(_.for [<monoid> <compose>]
+ (~~ (template [<composite> <monoid>]
+ [(_.for [<monoid> <composite>]
($monoid.spec /.equivalence <monoid> ..random))]
[/.+ /.addition]