aboutsummaryrefslogtreecommitdiff
path: root/stdlib/test/test/lux/control/reader.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/test/test/lux/control/reader.lux18
1 files changed, 9 insertions, 9 deletions
diff --git a/stdlib/test/test/lux/control/reader.lux b/stdlib/test/test/lux/control/reader.lux
index 6a6133aa1..804660a2c 100644
--- a/stdlib/test/test/lux/control/reader.lux
+++ b/stdlib/test/test/lux/control/reader.lux
@@ -11,14 +11,14 @@
(context: "Readers"
($_ seq
- (test "" (i.= 123 (&;run 123 &;ask)))
- (test "" (i.= 246 (&;run 123 (&;local (i.* 2) &;ask))))
- (test "" (i.= 134 (&;run 123 (:: &;Functor<Reader> map i.inc (i.+ 10)))))
- (test "" (i.= 10 (&;run 123 (:: &;Applicative<Reader> wrap 10))))
- (test "" (i.= 30 (&;run 123 (let [(^open "&/") &;Applicative<Reader>]
- (&/apply (&/wrap (i.+ 10)) (&/wrap 20))))))
- (test "" (i.= 30 (&;run 123 (do &;Monad<Reader>
- [f (wrap i.+)
+ (test "" (i/= 123 (&;run 123 &;ask)))
+ (test "" (i/= 246 (&;run 123 (&;local (i/* 2) &;ask))))
+ (test "" (i/= 134 (&;run 123 (:: &;Functor<Reader> map i/inc (i/+ 10)))))
+ (test "" (i/= 10 (&;run 123 (:: &;Applicative<Reader> wrap 10))))
+ (test "" (i/= 30 (&;run 123 (let [(^open "&/") &;Applicative<Reader>]
+ (&/apply (&/wrap (i/+ 10)) (&/wrap 20))))))
+ (test "" (i/= 30 (&;run 123 (do &;Monad<Reader>
+ [f (wrap i/+)
x (wrap 10)
y (wrap 20)]
(wrap (f x y))))))))
@@ -29,7 +29,7 @@
(|> (do (&;ReaderT io;Monad<IO>)
[a (&;lift (io/wrap 123))
b (wrap 456)]
- (wrap (i.+ a b)))
+ (wrap (i/+ a b)))
(&;run "")
io;run
(case> 579 true