diff options
author | Kim Alvefur <zash@zash.se> | 2020-09-28 23:48:02 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2020-09-28 23:48:02 +0200 |
commit | 33070035bf3e92548e69418e357bec5ca55f6266 (patch) | |
tree | f4309229137ee2a1e1c58b0f6e316222d0e0319e /spec | |
parent | 9dbdb91c471ea765936a15af02b62e4cbf7ba7a2 (diff) | |
download | prosody-33070035bf3e92548e69418e357bec5ca55f6266.tar.gz prosody-33070035bf3e92548e69418e357bec5ca55f6266.zip |
util.error: Drop registry initialization with namespace as key
Enough complexity with compact vs normal and with/without namespace
Diffstat (limited to 'spec')
-rw-r--r-- | spec/util_error_spec.lua | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/spec/util_error_spec.lua b/spec/util_error_spec.lua index 8b995895..34edd313 100644 --- a/spec/util_error_spec.lua +++ b/spec/util_error_spec.lua @@ -96,8 +96,7 @@ describe("util.error", function () end); it("compact mode works", function() - local reg = errors.init("test", { - namespace = "spec"; + local reg = errors.init("test", "spec", { broke = {"cancel"; "internal-server-error"; "It broke :("}; nope = {"auth"; "not-authorized"; "Can't let you do that Dave"; "sorry-dave"}; }); @@ -126,26 +125,20 @@ describe("util.error", function () extra = {namespace = "spec"; condition = "sorry-dave"}; }; }); - local compact1 = errors.init("test", { - namespace = "spec"; - broke = {"cancel"; "internal-server-error"; "It broke :("}; - nope = {"auth"; "not-authorized"; "Can't let you do that Dave"; "sorry-dave"}; - }); - local compact2 = errors.init("test", "spec", { + local compact1 = errors.init("test", "spec", { broke = {"cancel"; "internal-server-error"; "It broke :("}; nope = {"auth"; "not-authorized"; "Can't let you do that Dave"; "sorry-dave"}; }); - local compact3 = errors.init("test", { + local compact2 = errors.init("test", { broke = {"cancel"; "internal-server-error"; "It broke :("}; nope = {"auth"; "not-authorized"; "Can't let you do that Dave"}; }); assert.same(normal.registry, compact1.registry); - assert.same(normal.registry, compact2.registry); assert.same({ broke = {type = "cancel"; condition = "internal-server-error"; text = "It broke :("}; nope = {type = "auth"; condition = "not-authorized"; text = "Can't let you do that Dave"}; - }, compact3.registry); + }, compact2.registry); end); end); |