diff options
Diffstat (limited to 'test.lua')
-rw-r--r-- | test.lua | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,4 @@ +local files = require "files" package.path = package.path .. ';./test/?.lua' .. ';./test/?/init.lua' @@ -84,6 +85,12 @@ local function main() ws.awaitReady() + print('Loaded files in', os) + for uri in files.eachFile() do + print(uri) + end + print('===============') + testAll() end) end |