diff options
author | Rui Abreu Ferreira <raf-ep@gmx.com> | 2016-08-15 16:42:12 -0700 |
---|---|---|
committer | Rui Abreu Ferreira <rap-ep@gmx.com> | 2016-08-26 08:21:41 +0100 |
commit | 39c628d031b89e9048340f6c95b9c3a97c2a0089 (patch) | |
tree | 08e43522f44303bdbd2059b41d784560a1035ddf /test/functional/options | |
parent | 0089ef6b652ee455c9491a1a11f23939cfb63a08 (diff) | |
download | rneovim-39c628d031b89e9048340f6c95b9c3a97c2a0089.tar.gz rneovim-39c628d031b89e9048340f6c95b9c3a97c2a0089.tar.bz2 rneovim-39c628d031b89e9048340f6c95b9c3a97c2a0089.zip |
Mark some functional tests as pending in Windows
Diffstat (limited to 'test/functional/options')
-rw-r--r-- | test/functional/options/autochdir_spec.lua | 2 | ||||
-rw-r--r-- | test/functional/options/defaults_spec.lua | 2 | ||||
-rw-r--r-- | test/functional/options/shortmess_spec.lua | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/test/functional/options/autochdir_spec.lua b/test/functional/options/autochdir_spec.lua index 0e293761ad..209531515c 100644 --- a/test/functional/options/autochdir_spec.lua +++ b/test/functional/options/autochdir_spec.lua @@ -3,6 +3,8 @@ local clear = helpers.clear local eq = helpers.eq local getcwd = helpers.funcs.getcwd +if helpers.pending_win32(pending) then return end + describe("'autochdir'", function() it('given on the shell gets processed properly', function() local targetdir = 'test/functional/fixtures' diff --git a/test/functional/options/defaults_spec.lua b/test/functional/options/defaults_spec.lua index a131f72cf6..1ae855f26c 100644 --- a/test/functional/options/defaults_spec.lua +++ b/test/functional/options/defaults_spec.lua @@ -9,6 +9,8 @@ local eval = helpers.eval local eq = helpers.eq local neq = helpers.neq +if helpers.pending_win32(pending) then return end + local function init_session(...) local args = { helpers.nvim_prog, '-i', 'NONE', '--embed', '--cmd', 'set shortmess+=I background=light noswapfile noautoindent', diff --git a/test/functional/options/shortmess_spec.lua b/test/functional/options/shortmess_spec.lua index d531e47e28..22e8a39b79 100644 --- a/test/functional/options/shortmess_spec.lua +++ b/test/functional/options/shortmess_spec.lua @@ -2,6 +2,8 @@ local helpers = require('test.functional.helpers')(after_each) local Screen = require('test.functional.ui.screen') local clear, execute = helpers.clear, helpers.execute +if helpers.pending_win32(pending) then return end + describe("'shortmess'", function() local screen |