aboutsummaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2022-10-06 18:34:40 +0100
committerMatthew Wild <mwild1@gmail.com>2022-10-06 18:34:40 +0100
commit08b49654d9bfd6a280e336d834f4bcfee8bda8e1 (patch)
treecdc96abc1ec24589163565d6192685d8ec79647a /spec
parent12fc0febf172dd25d403af6365f3e5042b06d6dd (diff)
downloadprosody-08b49654d9bfd6a280e336d834f4bcfee8bda8e1.tar.gz
prosody-08b49654d9bfd6a280e336d834f4bcfee8bda8e1.zip
util.iterators: join: Work even with only a single iterator in the chain
Diffstat (limited to 'spec')
-rw-r--r--spec/util_iterators_spec.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/util_iterators_spec.lua b/spec/util_iterators_spec.lua
index 4cf6f19d..a4b85884 100644
--- a/spec/util_iterators_spec.lua
+++ b/spec/util_iterators_spec.lua
@@ -10,6 +10,14 @@ describe("util.iterators", function ()
end
assert.same(output, expect);
end);
+ it("should work with only a single iterator", function ()
+ local expect = { "a", "b", "c" };
+ local output = {};
+ for x in iter.join(iter.values({"a", "b", "c"})) do
+ table.insert(output, x);
+ end
+ assert.same(output, expect);
+ end);
end);
describe("sorted_pairs", function ()