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/ex_cmds | |
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/ex_cmds')
-rw-r--r-- | test/functional/ex_cmds/cd_spec.lua | 2 | ||||
-rw-r--r-- | test/functional/ex_cmds/recover_spec.lua | 2 | ||||
-rw-r--r-- | test/functional/ex_cmds/write_spec.lua | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/test/functional/ex_cmds/cd_spec.lua b/test/functional/ex_cmds/cd_spec.lua index fcd826c25d..3cf83cdb3b 100644 --- a/test/functional/ex_cmds/cd_spec.lua +++ b/test/functional/ex_cmds/cd_spec.lua @@ -9,6 +9,8 @@ local clear = helpers.clear local execute = helpers.execute local exc_exec = helpers.exc_exec +if helpers.pending_win32(pending) then return end + -- These directories will be created for testing local directories = { tab = 'Xtest-functional-ex_cmds-cd_spec.tab', -- Tab diff --git a/test/functional/ex_cmds/recover_spec.lua b/test/functional/ex_cmds/recover_spec.lua index 60673d25ef..0c97857180 100644 --- a/test/functional/ex_cmds/recover_spec.lua +++ b/test/functional/ex_cmds/recover_spec.lua @@ -6,6 +6,8 @@ local execute, eq, clear, eval, feed, expect, source = helpers.execute, helpers.eq, helpers.clear, helpers.eval, helpers.feed, helpers.expect, helpers.source +if helpers.pending_win32(pending) then return end + describe(':recover', function() before_each(clear) diff --git a/test/functional/ex_cmds/write_spec.lua b/test/functional/ex_cmds/write_spec.lua index b38ae29f7d..c1bc5d3140 100644 --- a/test/functional/ex_cmds/write_spec.lua +++ b/test/functional/ex_cmds/write_spec.lua @@ -5,6 +5,8 @@ local eq, eval, clear, write_file, execute, source = helpers.eq, helpers.eval, helpers.clear, helpers.write_file, helpers.execute, helpers.source +if helpers.pending_win32(pending) then return end + describe(':write', function() after_each(function() os.remove('test_bkc_file.txt') |