1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
describe "table spreading", -> it "list and dict", -> template = { foo: "Hello" bar: "World" "!" } specialized = { "a", "b", "c" ...template bar: "Bob" } assert.same specialized, { "a" "b" "c" "!" foo: "Hello" bar: "Bob" }