aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/functional/provider/python3_spec.lua4
-rw-r--r--test/functional/provider/python_spec.lua4
2 files changed, 8 insertions, 0 deletions
diff --git a/test/functional/provider/python3_spec.lua b/test/functional/provider/python3_spec.lua
index d7ca0bd420..b319d5e948 100644
--- a/test/functional/provider/python3_spec.lua
+++ b/test/functional/provider/python3_spec.lua
@@ -29,6 +29,10 @@ describe('python3 provider', function()
it('feature test', function()
eq(1, eval('has("python3")'))
+ eq(1, eval('has("python3_compiled")'))
+ eq(1, eval('has("python3_dynamic")'))
+ eq(0, eval('has("python3_dynamic_")'))
+ eq(0, eval('has("python3_")'))
end)
it('python3_execute', function()
diff --git a/test/functional/provider/python_spec.lua b/test/functional/provider/python_spec.lua
index eab4b29d3a..986f10b2e9 100644
--- a/test/functional/provider/python_spec.lua
+++ b/test/functional/provider/python_spec.lua
@@ -37,6 +37,10 @@ end)
describe('python feature test', function()
it('works', function()
eq(1, funcs.has('python'))
+ eq(1, funcs.has('python_compiled'))
+ eq(1, funcs.has('python_dynamic'))
+ eq(0, funcs.has('python_dynamic_'))
+ eq(0, funcs.has('python_'))
end)
end)