diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2016-08-31 21:39:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-31 21:39:42 +0200 |
commit | 0ade1bb7067d0cdb9b059fb66a8c4b868408be9c (patch) | |
tree | 36c02a63f28bef74b6f8a3cf891267912867e193 /test/functional/shell | |
parent | 7fd771619f2a2e2fe6007aaa6aa9a02cbdd205bd (diff) | |
parent | 9ce81f7b2b90846063f6bd4a5ce8efc61e437983 (diff) | |
download | rneovim-0ade1bb7067d0cdb9b059fb66a8c4b868408be9c.tar.gz rneovim-0ade1bb7067d0cdb9b059fb66a8c4b868408be9c.tar.bz2 rneovim-0ade1bb7067d0cdb9b059fb66a8c4b868408be9c.zip |
Merge pull request #5225 from equalsraf/windows-functionaltests
Enable functional tests in Appveyor
Diffstat (limited to 'test/functional/shell')
-rw-r--r-- | test/functional/shell/bang_filter_spec.lua | 2 | ||||
-rw-r--r-- | test/functional/shell/viml_system_spec.lua | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/test/functional/shell/bang_filter_spec.lua b/test/functional/shell/bang_filter_spec.lua index cd5325c4e1..a320e6d018 100644 --- a/test/functional/shell/bang_filter_spec.lua +++ b/test/functional/shell/bang_filter_spec.lua @@ -4,6 +4,8 @@ local helpers = require('test.functional.helpers')(after_each) local feed, execute, clear = helpers.feed, helpers.execute, helpers.clear local mkdir, write_file, rmdir = helpers.mkdir, helpers.write_file, helpers.rmdir +if helpers.pending_win32(pending) then return end + local Screen = require('test.functional.ui.screen') diff --git a/test/functional/shell/viml_system_spec.lua b/test/functional/shell/viml_system_spec.lua index 3de022cbd9..b8de7cc86f 100644 --- a/test/functional/shell/viml_system_spec.lua +++ b/test/functional/shell/viml_system_spec.lua @@ -8,6 +8,7 @@ local eq, clear, eval, feed, nvim = local Screen = require('test.functional.ui.screen') +if helpers.pending_win32(pending) then return end local function create_file_with_nuls(name) return function() |