diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-01-13 04:09:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-13 04:09:37 +0100 |
commit | f68663542037aaa4ae954aacae7adf2e88b151d5 (patch) | |
tree | 4e007995ce7eed3937d8aeb791cf25f0f5ea1e19 /test/functional/api/server_requests_spec.lua | |
parent | 802b49ee803aed63c15bd35ffc10e1ba2ba30e59 (diff) | |
parent | 82edcb593b19755187371635d7b5aabdf024bd1f (diff) | |
download | rneovim-f68663542037aaa4ae954aacae7adf2e88b151d5.tar.gz rneovim-f68663542037aaa4ae954aacae7adf2e88b151d5.tar.bz2 rneovim-f68663542037aaa4ae954aacae7adf2e88b151d5.zip |
Merge #5933 from justinmk/dir-bufenter
open_buffer(): Raise `BufEnter` for directories.
Diffstat (limited to 'test/functional/api/server_requests_spec.lua')
-rw-r--r-- | test/functional/api/server_requests_spec.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/api/server_requests_spec.lua b/test/functional/api/server_requests_spec.lua index 3245e1b52d..aa91cd1396 100644 --- a/test/functional/api/server_requests_spec.lua +++ b/test/functional/api/server_requests_spec.lua @@ -8,8 +8,6 @@ local nvim_prog, command, funcs = helpers.nvim_prog, helpers.command, helpers.fu local source, next_message = helpers.source, helpers.next_message local meths = helpers.meths -if helpers.pending_win32(pending) then return end - describe('server -> client', function() local cid @@ -212,6 +210,8 @@ describe('server -> client', function() funcs.jobstop(jobid) end) + if helpers.pending_win32(pending) then return end + it('rpc and text stderr can be combined', function() eq("ok",funcs.rpcrequest(jobid, "poll")) funcs.rpcnotify(jobid, "ping") |