From 6f79042502851a1ac50c5c462f4121a1c659b511 Mon Sep 17 00:00:00 2001
From: Albert Krewinkel <albert@zeitkraut.de>
Date: Tue, 2 Feb 2021 22:57:16 +0100
Subject: Add tests for search_path_separator

---
 test/lua/module/pandoc-path.lua | 8 ++++++++
 1 file changed, 8 insertions(+)

(limited to 'test/lua')

diff --git a/test/lua/module/pandoc-path.lua b/test/lua/module/pandoc-path.lua
index 7f3b21fe2..81c11e7b7 100644
--- a/test/lua/module/pandoc-path.lua
+++ b/test/lua/module/pandoc-path.lua
@@ -14,6 +14,14 @@ return {
       assert.is_truthy(path.separator:match '^[/\\]$')
     end),
   },
+  group 'search path separator' {
+    test('is string', function ()
+      assert.are_same(type(path.search_path_separator), 'string')
+    end),
+    test('is colon or semicolon', function ()
+      assert.is_truthy(path.search_path_separator:match '^[:;]$')
+    end)
+  },
   group 'module' {
     test('check function existence', function ()
       local functions = {
-- 
cgit v1.2.3