forked from mtcontrib/3d_armor
f81cb10f20
partially attends to https://github.com/pandorabox-io/pandorabox.io/issues/444 (the ObjectRef issue)
26 lines
649 B
Lua
26 lines
649 B
Lua
|
|
minetest.log("warning", "[TEST] integration-test enabled!")
|
|
|
|
minetest.register_on_mods_loaded(function()
|
|
minetest.after(1, function()
|
|
|
|
local data = minetest.write_json({ success = true }, true);
|
|
local file = io.open(minetest.get_worldpath().."/integration_test.json", "w" );
|
|
if file then
|
|
file:write(data)
|
|
file:close()
|
|
end
|
|
|
|
file = io.open(minetest.get_worldpath().."/registered_nodes.txt", "w" );
|
|
if file then
|
|
for name in pairs(minetest.registered_nodes) do
|
|
file:write(name .. '\n')
|
|
end
|
|
file:close()
|
|
end
|
|
|
|
minetest.log("warning", "[TEST] integration tests done!")
|
|
minetest.request_shutdown("success")
|
|
end)
|
|
end)
|