diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-02-19 07:09:46 -0500 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-02-19 07:10:47 -0500 |
commit | 7fa69fb288d9fcf66c2fe504d760cc7a23da7256 (patch) | |
tree | 4ebb41685f238f20781c26917c4085ab85d67ea7 | |
parent | 795da343bbf99c4b77d10cd5035c29df23f113ae (diff) | |
download | rneovim-7fa69fb288d9fcf66c2fe504d760cc7a23da7256.tar.gz rneovim-7fa69fb288d9fcf66c2fe504d760cc7a23da7256.tar.bz2 rneovim-7fa69fb288d9fcf66c2fe504d760cc7a23da7256.zip |
Resolve issues mentioned in PR review
-rw-r--r-- | test/functional/core/job_spec.lua | 4 | ||||
-rw-r--r-- | test/functional/ex_cmds/cd_spec.lua | 1 | ||||
-rw-r--r-- | test/functional/ex_cmds/write_spec.lua | 1 |
3 files changed, 0 insertions, 6 deletions
diff --git a/test/functional/core/job_spec.lua b/test/functional/core/job_spec.lua index 5f39040a6f..50feb41d1a 100644 --- a/test/functional/core/job_spec.lua +++ b/test/functional/core/job_spec.lua @@ -297,10 +297,6 @@ describe('jobs', function() eq({'notification', 'exit', {data, 0}}, next_msg()) end) - it('can omit options', function() - ok(eval([[jobstart('echo ""')]]) > 0) - end) - it('can omit data callbacks', function() nvim('command', 'unlet g:job_opts.on_stdout') nvim('command', 'let g:job_opts.user = 5') diff --git a/test/functional/ex_cmds/cd_spec.lua b/test/functional/ex_cmds/cd_spec.lua index d45f46ed3d..bc2b365b30 100644 --- a/test/functional/ex_cmds/cd_spec.lua +++ b/test/functional/ex_cmds/cd_spec.lua @@ -280,7 +280,6 @@ describe("getcwd()", function () it("returns empty string if working directory does not exist", function() if helpers.iswin() then - pending('[Cannot delete working directory in Windows]') return end command("cd "..directories.global) diff --git a/test/functional/ex_cmds/write_spec.lua b/test/functional/ex_cmds/write_spec.lua index 301e72bb42..bcf83698bb 100644 --- a/test/functional/ex_cmds/write_spec.lua +++ b/test/functional/ex_cmds/write_spec.lua @@ -88,7 +88,6 @@ describe(':write', function() command('let $HOME=""') eq(funcs.fnamemodify('.', ':p:h'), funcs.fnamemodify('.', ':p:h:~')) -- Message from check_overwrite - -- FIXME: 'E13: File exists (add ! to override)' in Windows if not helpers.iswin() then eq(('\nE17: "'..funcs.fnamemodify('.', ':p:h')..'" is a directory'), redir_exec('write .')) |