aboutsummaryrefslogtreecommitdiff
path: root/games/devtest/mods/unittests/inside_async_env.lua
diff options
context:
space:
mode:
Diffstat (limited to 'games/devtest/mods/unittests/inside_async_env.lua')
-rw-r--r--games/devtest/mods/unittests/inside_async_env.lua15
1 files changed, 15 insertions, 0 deletions
diff --git a/games/devtest/mods/unittests/inside_async_env.lua b/games/devtest/mods/unittests/inside_async_env.lua
new file mode 100644
index 000000000..9774771f9
--- /dev/null
+++ b/games/devtest/mods/unittests/inside_async_env.lua
@@ -0,0 +1,15 @@
+unittests = {}
+
+core.log("info", "Hello World")
+
+function unittests.async_test()
+ assert(core == minetest)
+ -- stuff that should not be here
+ assert(not core.get_player_by_name)
+ assert(not core.set_node)
+ assert(not core.object_refs)
+ -- stuff that should be here
+ assert(ItemStack)
+ assert(core.registered_items[""])
+ return true
+end