diff options
Diffstat (limited to 'test/functional/helpers.lua')
-rw-r--r-- | test/functional/helpers.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua index 9562457c8e..67c5a6f626 100644 --- a/test/functional/helpers.lua +++ b/test/functional/helpers.lua @@ -323,6 +323,10 @@ local function expect(contents) return eq(dedent(contents), curbuf_contents()) end +local function os_is_windows() + return nvim_eval('has("win32")') == 1 +end + local function rmdir(path) if lfs.attributes(path, 'mode') ~= 'directory' then return nil @@ -425,6 +429,7 @@ return { wait = wait, set_session = set_session, write_file = write_file, + os_is_windows = os_is_windows, rmdir = rmdir, mkdir = lfs.mkdir, exc_exec = exc_exec, |