diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2020-01-20 17:27:28 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-20 17:27:28 -0800 |
commit | 99aec382596bffaa91d0a944dc9474e42331ad93 (patch) | |
tree | 6da5117b428b925fdb46386c8c02b84a92cff6a3 /test/functional/helpers.lua | |
parent | f245c0218adc9ff3452660dff97e62cea8e9a411 (diff) | |
parent | b4e4ed844a25aa0ec43404e4ec318d0b54e0e1dd (diff) | |
download | rneovim-99aec382596bffaa91d0a944dc9474e42331ad93.tar.gz rneovim-99aec382596bffaa91d0a944dc9474e42331ad93.tar.bz2 rneovim-99aec382596bffaa91d0a944dc9474e42331ad93.zip |
Merge #11703 'CI: install perl provider'
Diffstat (limited to 'test/functional/helpers.lua')
-rw-r--r-- | test/functional/helpers.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua index de61ff9cc8..3ffc6137d6 100644 --- a/test/functional/helpers.lua +++ b/test/functional/helpers.lua @@ -768,7 +768,7 @@ function module.new_pipename() end function module.missing_provider(provider) - if provider == 'ruby' or provider == 'node' then + if provider == 'ruby' or provider == 'node' or provider == 'perl' then local prog = module.funcs['provider#' .. provider .. '#Detect']() return prog == '' and (provider .. ' not detected') or false elseif provider == 'python' or provider == 'python3' then |