aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/require.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/require.lua b/tests/require.lua
index 1730ce4..b194af1 100644
--- a/tests/require.lua
+++ b/tests/require.lua
@@ -25,8 +25,10 @@ local function a_lane()
25 return v==42 25 return v==42
26end 26end
27 27
28-- string and table for Lanes itself, package to be able to require in the lane, math for the actual work
28local gen= lanes.gen( "math,package,string,table", {package={}},a_lane ) 29local gen= lanes.gen( "math,package,string,table", {package={}},a_lane )
29 30
30local h= gen() 31local h= gen()
31local ret= h[1] 32local ret= h[1]
32assert( ret==true ) 33assert( ret==true )
34print "TEST OK" \ No newline at end of file