aboutsummaryrefslogtreecommitdiff
path: root/test/lua/smart-constructors.lua
diff options
context:
space:
mode:
Diffstat (limited to 'test/lua/smart-constructors.lua')
-rw-r--r--test/lua/smart-constructors.lua10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/lua/smart-constructors.lua b/test/lua/smart-constructors.lua
deleted file mode 100644
index 6e579a12f..000000000
--- a/test/lua/smart-constructors.lua
+++ /dev/null
@@ -1,10 +0,0 @@
--- Test that constructors are "smart" in that they autoconvert
--- types where sensible.
-function Para (_)
- return {
- pandoc.BulletList{pandoc.Para "Hello", pandoc.Para "World"},
- pandoc.DefinitionList{{"foo", pandoc.Para "placeholder"}},
- pandoc.LineBlock{"Moin", "Welt"},
- pandoc.OrderedList{pandoc.Plain{pandoc.Str "one"}, pandoc.Plain "two"}
- }
-end