diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-11-21 10:38:57 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-11-21 10:38:57 -0300 |
commit | 2c29b20af767bd7ebebeb41da14df4d66a19d5a0 (patch) | |
tree | aaed92ccdfd4dbef8255e42267a1cc90218e601b /test | |
parent | 9a774e726c362083691476a42ab6eac0b536397a (diff) | |
parent | 6b17082d3cf1f2e6c9eddb4f5ec0154f0f7286b0 (diff) | |
download | rneovim-2c29b20af767bd7ebebeb41da14df4d66a19d5a0.tar.gz rneovim-2c29b20af767bd7ebebeb41da14df4d66a19d5a0.tar.bz2 rneovim-2c29b20af767bd7ebebeb41da14df4d66a19d5a0.zip |
Merge PR #1515 'Refer to plugins running outside Nvim as "remote plugins"'
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/runtime/autoload/remote/define_spec.lua (renamed from test/functional/runtime/autoload/rpc/define_spec.lua) | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/test/functional/runtime/autoload/rpc/define_spec.lua b/test/functional/runtime/autoload/remote/define_spec.lua index a85ba4d37b..53da47243c 100644 --- a/test/functional/runtime/autoload/rpc/define_spec.lua +++ b/test/functional/runtime/autoload/remote/define_spec.lua @@ -346,20 +346,20 @@ local function host() end local function register() - eval('rpc#host#Register("busted", '..channel()..')') + eval('remote#host#Register("busted", '..channel()..')') end -command_specs_for('rpc#define#CommandOnChannel', true, channel) -command_specs_for('rpc#define#CommandOnChannel', false, channel) -command_specs_for('rpc#define#CommandOnHost', true, host, register) -command_specs_for('rpc#define#CommandOnHost', false, host, register) +command_specs_for('remote#define#CommandOnChannel', true, channel) +command_specs_for('remote#define#CommandOnChannel', false, channel) +command_specs_for('remote#define#CommandOnHost', true, host, register) +command_specs_for('remote#define#CommandOnHost', false, host, register) -autocmd_specs_for('rpc#define#AutocmdOnChannel', true, channel) -autocmd_specs_for('rpc#define#AutocmdOnChannel', false, channel) -autocmd_specs_for('rpc#define#AutocmdOnHost', true, host, register) -autocmd_specs_for('rpc#define#AutocmdOnHost', false, host, register) +autocmd_specs_for('remote#define#AutocmdOnChannel', true, channel) +autocmd_specs_for('remote#define#AutocmdOnChannel', false, channel) +autocmd_specs_for('remote#define#AutocmdOnHost', true, host, register) +autocmd_specs_for('remote#define#AutocmdOnHost', false, host, register) -function_specs_for('rpc#define#FunctionOnChannel', true, channel) -function_specs_for('rpc#define#FunctionOnChannel', false, channel) -function_specs_for('rpc#define#FunctionOnHost', true, host, register) -function_specs_for('rpc#define#FunctionOnHost', false, host, register) +function_specs_for('remote#define#FunctionOnChannel', true, channel) +function_specs_for('remote#define#FunctionOnChannel', false, channel) +function_specs_for('remote#define#FunctionOnHost', true, host, register) +function_specs_for('remote#define#FunctionOnHost', false, host, register) |