aboutsummaryrefslogtreecommitdiff
path: root/spec/inputs/test/destructure_spec.yue
blob: 802774c6da0a74b85eb8bb4b2e6c4c60b5def800 (plain)
1
2
3
4
5
describe "destructure", ->
	it "defaults and nested", ->
		t = { a: 1, b: { c: 3 }, d: nil }
		{:a, b: {:c, :d = 4}, :e = 5} = t
		assert.same {a, c, d, e}, {1, 3, 4, 5}