summaryrefslogtreecommitdiffstats
path: root/src/testdir/testluaplugin
diff options
context:
space:
mode:
Diffstat (limited to 'src/testdir/testluaplugin')
-rw-r--r--src/testdir/testluaplugin/lua/testluaplugin/hello.lua7
-rw-r--r--src/testdir/testluaplugin/lua/testluaplugin/init.lua5
2 files changed, 12 insertions, 0 deletions
diff --git a/src/testdir/testluaplugin/lua/testluaplugin/hello.lua b/src/testdir/testluaplugin/lua/testluaplugin/hello.lua
new file mode 100644
index 0000000..7c90552
--- /dev/null
+++ b/src/testdir/testluaplugin/lua/testluaplugin/hello.lua
@@ -0,0 +1,7 @@
+local function hello()
+ return "hello from lua"
+end
+
+return {
+ hello = hello
+}
diff --git a/src/testdir/testluaplugin/lua/testluaplugin/init.lua b/src/testdir/testluaplugin/lua/testluaplugin/init.lua
new file mode 100644
index 0000000..1e6c474
--- /dev/null
+++ b/src/testdir/testluaplugin/lua/testluaplugin/init.lua
@@ -0,0 +1,5 @@
+local hello = require('testluaplugin/hello').hello
+
+return {
+ hello = hello
+}