diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-03-22 11:56:03 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-03-22 11:56:03 +0000 |
commit | cdff82828c31d14b805213c68b8040ff2958d291 (patch) | |
tree | 6347351b2b665b486d94dac84c6daa2b434ef0cf | |
parent | 38ac92b0df128fea95cb790f2920d747045598df (diff) | |
download | prosody-cdff82828c31d14b805213c68b8040ff2958d291.tar.gz prosody-cdff82828c31d14b805213c68b8040ff2958d291.zip |
util.async: tests: ensure async.once() propagates errors
-rw-r--r-- | spec/util_async_spec.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/util_async_spec.lua b/spec/util_async_spec.lua index f7e469c9..7c1696b5 100644 --- a/spec/util_async_spec.lua +++ b/spec/util_async_spec.lua @@ -602,5 +602,13 @@ describe("util.async", function() async.once(f); assert.spy(f).was.called(); end); + it("should propagate errors", function () + local function should_error() + async.once(function () + error("hello world"); + end); + end; + assert.error_matches(should_error, "hello world"); + end); end); end); |