aboutsummaryrefslogtreecommitdiff
path: root/test/Tests/Lua
AgeCommit message (Collapse)AuthorFilesLines
2021-12-20Lua: use more natural representation for Reference valuesAlbert Krewinkel1-1/+1
Omit `false` boolean values, push integers as numbers.
2021-02-02Lua: add module "pandoc.path"Albert Krewinkel1-0/+2
The module allows to work with file paths in a convenient and platform-independent manner. Closes: #6001 Closes: #6565
2021-01-08Update copyright notices for 2021 (#7012)Albert Krewinkel1-1/+1
2020-03-13Update copyright year (#6186)Albert Krewinkel1-1/+1
* Update copyright year * Copyright: add notes for Lua and Jira modules
2020-01-11Add tests for pandoc.List moduleAlbert Krewinkel1-0/+2
2019-05-30Lua modules: test pandoc.mediabagAlbert Krewinkel1-3/+8
2019-05-29Lua: add Version type to simplify comparisonsAlbert Krewinkel1-1/+2
Version specifiers like `PANDOC_VERSION` and `PANDOC_API_VERSION` are turned into `Version` objects. The objects simplify version-appropriate comparisons while maintaining backward-compatibility. A function `pandoc.types.Version` is added as part of the newly introduced module `pandoc.types`, allowing users to create version objects in scripts.
2019-05-20Improve output of Lua tests (#5499)Albert Krewinkel1-0/+27
This makes use of tasty-lua, a package to write tests in Lua and integrate the results into Tasty output. Test output becomes more informative: individual tests and test groups become visible in test output. Failures are reported with helpful error messages.