spec/util_iterators_spec.lua
author Kim Alvefur <zash@zash.se>
Fri, 03 Aug 2018 21:45:55 +0200
changeset 9093 56c52cb4d44e
parent 8808 82d68951ec2a
child 9330 f6f1dec164b5
permissions -rw-r--r--
util.dataforms: Exclude descriptive text fields from forms of type 'submit' The receiving end presumably already have the original form, so these potentially long text fields are of little value.

local iter = require "util.iterators";

describe("util.iterators", function ()
	describe("join", function ()
		it("should produce a joined iterator", function ()
			local expect = { "a", "b", "c", 1, 2, 3 };
			local output = {};
			for x in iter.join(iter.values({"a", "b", "c"})):append(iter.values({1, 2, 3})) do
				table.insert(output, x);
			end
			assert.same(output, expect);
		end);
	end);
end);