aboutsummaryrefslogtreecommitdiff
path: root/test/functional/fixtures/lua
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/fixtures/lua')
-rw-r--r--test/functional/fixtures/lua/test_plug/lua/health.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/functional/fixtures/lua/test_plug/lua/health.lua b/test/functional/fixtures/lua/test_plug/lua/health.lua
new file mode 100644
index 0000000000..75164f37ab
--- /dev/null
+++ b/test/functional/fixtures/lua/test_plug/lua/health.lua
@@ -0,0 +1,8 @@
+local M = {}
+
+M.check = function()
+ vim.health.start('nested lua/ directory')
+ vim.health.ok('everything is ok')
+end
+
+return M