diff options
| author | b-r-o-c-k <brockmammen@gmail.com> | 2018-04-14 14:17:51 -0500 | 
|---|---|---|
| committer | b-r-o-c-k <brockmammen@gmail.com> | 2018-04-14 14:17:51 -0500 | 
| commit | ad999eaa775d7d4b0cacedb30c6ea3a0ee699a6f (patch) | |
| tree | 92de2079e80f5f289dd87a54af123cb7d90c3058 /test/functional/api/server_notifications_spec.lua | |
| parent | 78bc52ea5397c092d01cd08296fe1dc85d998329 (diff) | |
| parent | ef4feab0e75be19c5f41d70a001db980b72090f5 (diff) | |
| download | rneovim-ad999eaa775d7d4b0cacedb30c6ea3a0ee699a6f.tar.gz rneovim-ad999eaa775d7d4b0cacedb30c6ea3a0ee699a6f.tar.bz2 rneovim-ad999eaa775d7d4b0cacedb30c6ea3a0ee699a6f.zip  | |
Merge branch 'master' into s-dash-stdin
Diffstat (limited to 'test/functional/api/server_notifications_spec.lua')
| -rw-r--r-- | test/functional/api/server_notifications_spec.lua | 16 | 
1 files changed, 8 insertions, 8 deletions
diff --git a/test/functional/api/server_notifications_spec.lua b/test/functional/api/server_notifications_spec.lua index 9d7cfb9b78..1d64ae7103 100644 --- a/test/functional/api/server_notifications_spec.lua +++ b/test/functional/api/server_notifications_spec.lua @@ -1,7 +1,7 @@  local helpers = require('test.functional.helpers')(after_each) -local eq, clear, eval, command, nvim, next_message = +local eq, clear, eval, command, nvim, next_msg =    helpers.eq, helpers.clear, helpers.eval, helpers.command, helpers.nvim, -  helpers.next_message +  helpers.next_msg  local meths = helpers.meths  describe('notify', function() @@ -15,10 +15,10 @@ describe('notify', function()    describe('passing a valid channel id', function()      it('sends the notification/args to the corresponding channel', function()        eval('rpcnotify('..channel..', "test-event", 1, 2, 3)') -      eq({'notification', 'test-event', {1, 2, 3}}, next_message()) +      eq({'notification', 'test-event', {1, 2, 3}}, next_msg())        command('au FileType lua call rpcnotify('..channel..', "lua!")')        command('set filetype=lua') -      eq({'notification', 'lua!', {}}, next_message()) +      eq({'notification', 'lua!', {}}, next_msg())      end)    end) @@ -28,13 +28,13 @@ describe('notify', function()        eval('rpcnotify(0, "event1", 1, 2, 3)')        eval('rpcnotify(0, "event2", 4, 5, 6)')        eval('rpcnotify(0, "event2", 7, 8, 9)') -      eq({'notification', 'event2', {4, 5, 6}}, next_message()) -      eq({'notification', 'event2', {7, 8, 9}}, next_message()) +      eq({'notification', 'event2', {4, 5, 6}}, next_msg()) +      eq({'notification', 'event2', {7, 8, 9}}, next_msg())        nvim('unsubscribe', 'event2')        nvim('subscribe', 'event1')        eval('rpcnotify(0, "event2", 10, 11, 12)')        eval('rpcnotify(0, "event1", 13, 14, 15)') -      eq({'notification', 'event1', {13, 14, 15}}, next_message()) +      eq({'notification', 'event1', {13, 14, 15}}, next_msg())      end)      it('does not crash for deeply nested variable', function() @@ -42,7 +42,7 @@ describe('notify', function()        local nest_level = 1000        meths.command(('call map(range(%u), "extend(g:, {\'l\': [g:l]})")'):format(nest_level - 1))        eval('rpcnotify('..channel..', "event", g:l)') -      local msg = next_message() +      local msg = next_msg()        eq('notification', msg[1])        eq('event', msg[2])        local act_ret = msg[3]  | 
