diff options
Diffstat (limited to 'spec/inputs/test/destructure_spec.yue')
| -rw-r--r-- | spec/inputs/test/destructure_spec.yue | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/spec/inputs/test/destructure_spec.yue b/spec/inputs/test/destructure_spec.yue new file mode 100644 index 0000000..802774c --- /dev/null +++ b/spec/inputs/test/destructure_spec.yue | |||
| @@ -0,0 +1,5 @@ | |||
| 1 | describe "destructure", -> | ||
| 2 | it "defaults and nested", -> | ||
| 3 | t = { a: 1, b: { c: 3 }, d: nil } | ||
| 4 | {:a, b: {:c, :d = 4}, :e = 5} = t | ||
| 5 | assert.same {a, c, d, e}, {1, 3, 4, 5} | ||
