diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-01-13 19:48:59 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-01-20 19:43:59 -0500 |
commit | 3420bd21e19cf5feaeca1524e0dfcbabaac5d7c5 (patch) | |
tree | efa8cec7a9878b88420494888c3f59fea4878b45 /test/functional/helpers.lua | |
parent | c25b5a1576eca912671d5f2fe47043055fbca2b0 (diff) | |
download | rneovim-3420bd21e19cf5feaeca1524e0dfcbabaac5d7c5.tar.gz rneovim-3420bd21e19cf5feaeca1524e0dfcbabaac5d7c5.tar.bz2 rneovim-3420bd21e19cf5feaeca1524e0dfcbabaac5d7c5.zip |
provider/perl: add basic tests
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 |