aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/control/thread.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/test/lux/control/thread.lux')
-rw-r--r--stdlib/source/test/lux/control/thread.lux62
1 files changed, 31 insertions, 31 deletions
diff --git a/stdlib/source/test/lux/control/thread.lux b/stdlib/source/test/lux/control/thread.lux
index 411a0c386..ed83c132f 100644
--- a/stdlib/source/test/lux/control/thread.lux
+++ b/stdlib/source/test/lux/control/thread.lux
@@ -35,17 +35,17 @@
(all _.and
(_.for [/.Thread]
(all _.and
- (_.cover [/.result]
- (n.= sample
- (|> sample
- (# /.monad in)
- /.result)))
- (_.cover [/.io]
- (n.= sample
- (|> sample
- (# /.monad in)
- /.io
- io.run!)))
+ (_.coverage [/.result]
+ (n.= sample
+ (|> sample
+ (# /.monad in)
+ /.result)))
+ (_.coverage [/.io]
+ (n.= sample
+ (|> sample
+ (# /.monad in)
+ /.io
+ io.run!)))
(_.for [/.functor]
($functor.spec ..injection ..comparison /.functor))
@@ -57,26 +57,26 @@
(_.for [/.Box /.box]
(all _.and
- (_.cover [/.read!]
- (n.= sample
- (/.result (is (All (_ !) (Thread ! Nat))
- (do /.monad
- [box (/.box sample)]
- (/.read! box))))))
+ (_.coverage [/.read!]
+ (n.= sample
+ (/.result (is (All (_ !) (Thread ! Nat))
+ (do /.monad
+ [box (/.box sample)]
+ (/.read! box))))))
- (_.cover [/.write!]
- (n.= factor
- (/.result (is (All (_ !) (Thread ! Nat))
- (do /.monad
- [box (/.box sample)
- _ (/.write! factor box)]
- (/.read! box))))))
+ (_.coverage [/.write!]
+ (n.= factor
+ (/.result (is (All (_ !) (Thread ! Nat))
+ (do /.monad
+ [box (/.box sample)
+ _ (/.write! factor box)]
+ (/.read! box))))))
- (_.cover [/.update!]
- (n.= (n.* factor sample)
- (/.result (is (All (_ !) (Thread ! Nat))
- (do /.monad
- [box (/.box sample)
- [old new] (/.update! (n.* factor) box)]
- (in new))))))))
+ (_.coverage [/.update!]
+ (n.= (n.* factor sample)
+ (/.result (is (All (_ !) (Thread ! Nat))
+ (do /.monad
+ [box (/.box sample)
+ [old new] (/.update! (n.* factor) box)]
+ (in new))))))))
))))