diff options
author | Albert Krewinkel <albert@zeitkraut.de> | 2020-01-10 20:13:06 +0100 |
---|---|---|
committer | Albert Krewinkel <albert@zeitkraut.de> | 2020-01-11 19:38:27 +0100 |
commit | e98921ae571717d3d7c1fbaf7d7d527361b664c9 (patch) | |
tree | ae6886402a129baa0b69e4ce6d461486a760ffda /test/lua | |
parent | 57637f8aae6172e7713e885f41f4574cfa2770b3 (diff) | |
download | pandoc-e98921ae571717d3d7c1fbaf7d7d527361b664c9.tar.gz |
pandoc.List.lua: make `pandoc.List` a callable constructor
It is now possible to construct a new List via `pandoc.List()` instead of
`pandoc.List:new()`.
Diffstat (limited to 'test/lua')
-rw-r--r-- | test/lua/module/pandoc-list.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/lua/module/pandoc-list.lua b/test/lua/module/pandoc-list.lua index faa5e966e..fb0c1c495 100644 --- a/test/lua/module/pandoc-list.lua +++ b/test/lua/module/pandoc-list.lua @@ -6,6 +6,15 @@ local test = tasty.test_case local group = tasty.test_group return { + group 'List as function' { + test('equivalent to List:new', function (x) + local new = List:new {'ramen'} + local list = List {'ramen'} + assert.are_same(new, list) + assert.are_equal(getmetatable(new), getmetatable(list)) + end) + }, + group 'new' { test('make table usable as list', function () local test = List:new{1, 1, 2, 3, 5} |