aboutsummaryrefslogtreecommitdiff
path: root/spec/inputs/test/table_spreading_spec.yue
blob: e7942ccb0403a5bd16cbdee23781cdbb7fa6d9c9 (plain)
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"
		}