From 5890678289e28cc9e666c1dda8265712bd27ac03 Mon Sep 17 00:00:00 2001 From: Benoit Germain Date: Wed, 29 May 2024 12:10:05 +0200 Subject: Fix lanes.lua dependency on "io" --- tests/require.lua | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests') 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() return v==42 end +-- string and table for Lanes itself, package to be able to require in the lane, math for the actual work local gen= lanes.gen( "math,package,string,table", {package={}},a_lane ) local h= gen() local ret= h[1] assert( ret==true ) +print "TEST OK" \ No newline at end of file -- cgit v1.2.3-55-g6feb