aboutsummaryrefslogtreecommitdiff
path: root/test/functional/helpers.lua
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2019-12-31 14:21:57 -0500
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2019-12-31 15:11:08 -0500
commit1836853955e51efbaf4aba7dec0718e51747b418 (patch)
treef9e4ddbe24b3becf0844682e144d5b3ec20d58df /test/functional/helpers.lua
parente922576bdd6abd6736417343121120b289079565 (diff)
downloadrneovim-1836853955e51efbaf4aba7dec0718e51747b418.tar.gz
rneovim-1836853955e51efbaf4aba7dec0718e51747b418.tar.bz2
rneovim-1836853955e51efbaf4aba7dec0718e51747b418.zip
ci: test powershell core on Linux
Diffstat (limited to 'test/functional/helpers.lua')
-rw-r--r--test/functional/helpers.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/functional/helpers.lua b/test/functional/helpers.lua
index eead1ea3e0..0fdfcd70ba 100644
--- a/test/functional/helpers.lua
+++ b/test/functional/helpers.lua
@@ -504,9 +504,13 @@ function module.source(code)
return fname
end
+function module.has_powershell()
+ return module.eval('executable("'..(iswin() and 'powershell' or 'pwsh')..'")') == 1
+end
+
function module.set_shell_powershell()
local shell = iswin() and 'powershell' or 'pwsh'
- assert(module.eval('executable("'..shell..'")'))
+ assert(module.has_powershell())
local cmd = 'Remove-Item -Force '..table.concat(iswin()
and {'alias:cat', 'alias:echo', 'alias:sleep'}
or {'alias:echo'}, ',')..';'