aboutsummaryrefslogtreecommitdiff
path: root/test/modules/debugger/lua
diff options
context:
space:
mode:
authormitchell <70453897+orbitalquark@users.noreply.github.com>2020-10-29 12:44:03 -0400
committermitchell <70453897+orbitalquark@users.noreply.github.com>2020-10-29 12:44:03 -0400
commit314e2041cd55f412d0f8d1c46209f04ddaf13ad3 (patch)
treefe22029667b5bf024f975c99392d0c4a73aae164 /test/modules/debugger/lua
parent9809b072113fa6c39c65e323c5cb1bd2149fa46c (diff)
downloadtextadept-314e2041cd55f412d0f8d1c46209f04ddaf13ad3.tar.gz
textadept-314e2041cd55f412d0f8d1c46209f04ddaf13ad3.zip
Added more unit tests.
Diffstat (limited to 'test/modules/debugger/lua')
-rw-r--r--test/modules/debugger/lua/foo.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/modules/debugger/lua/foo.lua b/test/modules/debugger/lua/foo.lua
new file mode 100644
index 00000000..e941ebb8
--- /dev/null
+++ b/test/modules/debugger/lua/foo.lua
@@ -0,0 +1,9 @@
+function foo(i)
+ print('foo', i)
+end
+
+print('start')
+for i = 1, 4 do
+ foo(i)
+end
+print('end')