Files
2026-07-13 12:32:21 +08:00

9 lines
248 B
Lua

-- Valid module (exposing data and having a global variable) for utils.load_module_if_exists unit tests.
-- Assert that load_module_if_exists returns a module if it was valid
local _M = {
exposed = "All your base are belong to us."
}
return _M