aboutsummaryrefslogtreecommitdiff
path: root/test/lua/module/pandoc-path.lua
blob: 9a5a3f6c8142c56c588b975385db4d74d3dfda5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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),
  },
}