functests: Replace check_provider -> missing_provider with err report

This commit is contained in:
ZyX
2017-05-12 20:47:33 +03:00
parent 50398e10fe
commit 19d38c4d0f
5 changed files with 18 additions and 16 deletions

View File

@@ -3,13 +3,14 @@ local eval, command, feed = helpers.eval, helpers.command, helpers.feed
local eq, clear, insert = helpers.eq, helpers.clear, helpers.insert
local expect, write_file = helpers.expect, helpers.write_file
local feed_command = helpers.feed_command
local check_provider = helpers.check_provider
local missing_provider = helpers.missing_provider
do
clear()
if not check_provider('python3') then
local err = missing_provider('python3')
if err then
pending(
'Python 3 (or the Python 3 neovim module) is broken or missing:\n' .. errors,
'Python 3 (or the Python 3 neovim module) is broken or missing:\n' .. err,
function() end)
return
end