spec/util_iterators_spec.lua
changeset 12748 e894677359e5
parent 9331 a9592107021b
--- a/spec/util_iterators_spec.lua	Thu Oct 06 16:00:39 2022 +0100
+++ b/spec/util_iterators_spec.lua	Thu Oct 06 18:34:40 2022 +0100
@@ -10,6 +10,14 @@
 			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 ()