mirror of
https://github.com/neovim/neovim.git
synced 2026-01-17 10:38:57 +10:00
28 lines
839 B
Lua
28 lines
839 B
Lua
local helpers = require('test.functional.helpers')(after_each)
|
|
local clear, eq, next_msg, nvim, source = helpers.clear, helpers.eq,
|
|
helpers.next_message, helpers.nvim, helpers.source
|
|
|
|
if helpers.pending_win32(pending) then return end
|
|
|
|
describe('jobs with partials', function()
|
|
local channel
|
|
|
|
before_each(function()
|
|
clear()
|
|
channel = nvim('get_api_info')[1]
|
|
nvim('set_var', 'channel', channel)
|
|
end)
|
|
|
|
it('works correctly', function()
|
|
source([[
|
|
function PrintArgs(a1, a2, id, data, event)
|
|
call rpcnotify(g:channel, '1', a:a1, a:a2, a:data, a:event)
|
|
endfunction
|
|
let Callback = function('PrintArgs', ["foo", "bar"])
|
|
let g:job_opts = {'on_stdout': Callback}
|
|
call jobstart(['echo'], g:job_opts)
|
|
]])
|
|
eq({'notification', '1', {'foo', 'bar', {'', ''}, 'stdout'}}, next_msg())
|
|
end)
|
|
end)
|