aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/lux/type/resource.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/test/lux/type/resource.lux')
-rw-r--r--stdlib/source/test/lux/type/resource.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/test/lux/type/resource.lux b/stdlib/source/test/lux/type/resource.lux
index 1c2547ad9..8bd0f85d4 100644
--- a/stdlib/source/test/lux/type/resource.lux
+++ b/stdlib/source/test/lux/type/resource.lux
@@ -26,7 +26,7 @@
[\\library
["[0]" / (.only Res)]])
-(def: pure
+(def pure
Test
(monad.do [! random.monad]
[pre (at ! each %.nat random.nat)
@@ -68,7 +68,7 @@
))
)))))
-(def: sync
+(def sync
Test
(monad.do [! random.monad]
[pre (at ! each %.nat random.nat)
@@ -111,7 +111,7 @@
))
)))))
-(def: async
+(def async
Test
(monad.do [! random.monad]
[pre (at ! each %.nat random.nat)
@@ -155,7 +155,7 @@
))
)))))
-(def: with_error
+(def with_error
(syntax (_ [exception <code>.symbol
to_expand <code>.any])
(monad.do meta.monad
@@ -169,7 +169,7 @@
{try.#Failure error}
true)))]}))))
-(def: .public test
+(def .public test
Test
(<| (_.covering /._)
(_.for [/.Procedure])