aboutsummaryrefslogtreecommitdiff
path: root/test/functional/fixtures/autoload/provider/python3.vim
diff options
context:
space:
mode:
authorShougo <Shougo.Matsu@gmail.com>2022-01-31 23:06:46 +0900
committerGitHub <noreply@github.com>2022-01-31 15:06:46 +0100
commitf195345c936eaecf423ab79473003e1ab337a17d (patch)
treef124e0bc7d3c6abfd4808627b36ce1ae8e33a603 /test/functional/fixtures/autoload/provider/python3.vim
parent2a58e62145d64245e23825ca717aecf8eaaaddad (diff)
downloadrneovim-f195345c936eaecf423ab79473003e1ab337a17d.tar.gz
rneovim-f195345c936eaecf423ab79473003e1ab337a17d.tar.bz2
rneovim-f195345c936eaecf423ab79473003e1ab337a17d.zip
[RFC] fix: has('python') error (#17252)
* fix: has('python') error * fix: functional tests
Diffstat (limited to 'test/functional/fixtures/autoload/provider/python3.vim')
-rw-r--r--test/functional/fixtures/autoload/provider/python3.vim6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/functional/fixtures/autoload/provider/python3.vim b/test/functional/fixtures/autoload/provider/python3.vim
new file mode 100644
index 0000000000..8ed4330a35
--- /dev/null
+++ b/test/functional/fixtures/autoload/provider/python3.vim
@@ -0,0 +1,6 @@
+" Dummy test provider, missing this required variable:
+" let g:loaded_brokenenabled_provider = 0
+
+function! provider#python3#Call(method, args)
+ return 42
+endfunction