Files
soldr-modules/tests_framework/busted.lua
T
2022-11-22 02:21:28 +03:00

13 lines
341 B
Lua
Executable File

for idx, item in ipairs(arg) do
print(string.format("ARG[%d] %s", idx, item))
end
local lua_path = os.getenv("LUA_PATH")
if lua_path then package.path = lua_path end
local lua_cpath = os.getenv("LUA_CPATH")
if lua_cpath then package.cpath = lua_cpath end
-- Busted command-line runner
require 'busted.runner' ({ standalone = false })