diff options
author | Eduardo Julian | 2022-12-22 15:51:13 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-12-22 15:51:13 -0400 |
commit | 4f4a96635abb04239102e4b72dc2a9c6f678dcd2 (patch) | |
tree | 0c42c6c802b6f8f6742b61c4bced1906edfeea81 /stdlib/source/test/lux/control/concurrency/async.lux | |
parent | 240a4465157bb903dd2a3ee4cdc28aadf09f8dcb (diff) |
Now showing stack-traces for runtime exceptions in Ruby.
Diffstat (limited to 'stdlib/source/test/lux/control/concurrency/async.lux')
-rw-r--r-- | stdlib/source/test/lux/control/concurrency/async.lux | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/stdlib/source/test/lux/control/concurrency/async.lux b/stdlib/source/test/lux/control/concurrency/async.lux index 64bc1e119..efa1e26dc 100644 --- a/stdlib/source/test/lux/control/concurrency/async.lux +++ b/stdlib/source/test/lux/control/concurrency/async.lux @@ -2,13 +2,12 @@ [library [lux (.except) [abstract - [monad (.only do)] + ["[0]" monad (.only do) + ["[1]T" \\test]] ["[0]" functor ["[1]T" \\test (.only Injection Comparison)]] ["[0]" apply - ["[1]T" \\test]] - [\\specification - ["$[0]" monad]]] + ["[1]T" \\test]]] [control ["[0]" io]] [math @@ -70,7 +69,7 @@ (_.for [/.apply] (applyT.spec ..injection ..comparison /.apply)) (_.for [/.monad] - ($monad.spec ..injection ..comparison /.monad)) + (monadT.spec ..injection ..comparison /.monad)) (in (do /.monad [.let [[async resolver] (is [(/.Async Nat) (/.Resolver Nat)] |