diff options
author | Josh Rahm <joshuarahm@gmail.com> | 2024-03-09 15:00:41 -0700 |
---|---|---|
committer | Josh Rahm <joshuarahm@gmail.com> | 2024-03-09 15:00:41 -0700 |
commit | 7a7f497b483cd65e340064f23ed1c73425ecba0a (patch) | |
tree | d5c99ea22a1e10300d06165f8ac96df6b0dc59e1 /test/functional/provider/provider_spec.lua | |
parent | 1b7b916b7631ddf73c38e3a0070d64e4636cb2f3 (diff) | |
parent | ade1b12f49c3b3914c74847d791eb90ea90b56b7 (diff) | |
download | rneovim-7a7f497b483cd65e340064f23ed1c73425ecba0a.tar.gz rneovim-7a7f497b483cd65e340064f23ed1c73425ecba0a.tar.bz2 rneovim-7a7f497b483cd65e340064f23ed1c73425ecba0a.zip |
Merge remote-tracking branch 'upstream/master' into aucmd_textputpost
Diffstat (limited to 'test/functional/provider/provider_spec.lua')
-rw-r--r-- | test/functional/provider/provider_spec.lua | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/test/functional/provider/provider_spec.lua b/test/functional/provider/provider_spec.lua index b1c326d04c..cccd1a1184 100644 --- a/test/functional/provider/provider_spec.lua +++ b/test/functional/provider/provider_spec.lua @@ -1,4 +1,3 @@ - local helpers = require('test.functional.helpers')(after_each) local clear, eval = helpers.clear, helpers.eval local command = helpers.command @@ -14,14 +13,18 @@ describe('providers', function() command('set loadplugins') -- Using test-fixture with broken impl: -- test/functional/fixtures/autoload/provider/python.vim - eq('Vim:provider: python3: missing required variable g:loaded_python3_provider', - pcall_err(eval, "has('python3')")) + eq( + 'Vim:provider: python3: missing required variable g:loaded_python3_provider', + pcall_err(eval, "has('python3')") + ) end) it('with g:loaded_xx_provider, missing #Call()', function() -- Using test-fixture with broken impl: -- test/functional/fixtures/autoload/provider/ruby.vim - eq('Vim:provider: ruby: g:loaded_ruby_provider=2 but provider#ruby#Call is not defined', - pcall_err(eval, "has('ruby')")) + eq( + 'Vim:provider: ruby: g:loaded_ruby_provider=2 but provider#ruby#Call is not defined', + pcall_err(eval, "has('ruby')") + ) end) end) |