aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/abstract/functor.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/test/lux/abstract/functor.lux38
1 files changed, 19 insertions, 19 deletions
diff --git a/stdlib/source/test/lux/abstract/functor.lux b/stdlib/source/test/lux/abstract/functor.lux
index b4b333f13..541c88971 100644
--- a/stdlib/source/test/lux/abstract/functor.lux
+++ b/stdlib/source/test/lux/abstract/functor.lux
@@ -1,20 +1,20 @@
(.using
- [library
- [lux "*"
- ["_" test {"+" Test}]
- [abstract
- [monad {"+" do}]]
- [control
- ["[0]" maybe]]
- [data
- [collection
- ["[0]" list]]]
- [math
- ["[0]" random]
- [number
- ["n" nat]]]]]
- [\\library
- ["[0]" / {"+" Functor}]])
+ [library
+ [lux "*"
+ ["_" test {"+" Test}]
+ [abstract
+ [monad {"+" do}]]
+ [control
+ ["[0]" maybe]]
+ [data
+ [collection
+ ["[0]" list]]]
+ [math
+ ["[0]" random]
+ [number
+ ["n" nat]]]]]
+ [\\library
+ ["[0]" / {"+" Functor}]])
(def: .public test
Test
@@ -36,7 +36,7 @@
(case (# (/.sum maybe.functor list.functor) each
(n.+ shift)
{.#Right (list right)})
- (^ {.#Right (list actual)})
+ (pattern {.#Right (list actual)})
(n.= (n.+ shift right) actual)
_
@@ -45,7 +45,7 @@
(case (# (/.product maybe.functor list.functor) each
(n.+ shift)
[{.#Some left} (list right)])
- (^ [{.#Some actualL} (list actualR)])
+ (pattern [{.#Some actualL} (list actualR)])
(and (n.= (n.+ shift left) actualL)
(n.= (n.+ shift right) actualR))
@@ -55,7 +55,7 @@
(case (# (/.composite maybe.functor list.functor) each
(n.+ shift)
{.#Some (list left)})
- (^ {.#Some (list actual)})
+ (pattern {.#Some (list actual)})
(n.= (n.+ shift left) actual)
_