pandoc/test/lua/module/pandoc-path.lua
Albert Krewinkel 61b108d527 Lua: add module "pandoc.path"
The module allows to work with file paths in a convenient and
platform-independent manner.

Closes: #6001
Closes: #6565
2021-02-02 21:04:30 -08:00

17 lines
407 B
Lua

local tasty = require 'tasty'
local path = require 'pandoc.path'
local assert = tasty.assert
local test = tasty.test_case
local group = tasty.test_group
return {
group 'path separator' {
test('is string', function ()
assert.are_same(type(path.separator), 'string')
end),
test('is slash or backslash', function ()
assert.is_truthy(path.separator:match '^[/\\]$')
end),
},
}