61b108d527
The module allows to work with file paths in a convenient and platform-independent manner. Closes: #6001 Closes: #6565
17 lines
407 B
Lua
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),
|
|
},
|
|
}
|