CC-Tweaked/src/test/server-files/computers/computer/13/startup.lua

15 lines
217 B
Lua

-- CraftOsTest.`Sends basic rednet messages`
rednet.open("top")
rednet.send(14, "Test msg")
local id, msg
repeat
id, msg = rednet.receive()
print(id, msg)
until id == 14
test.eq("Test msg", msg)
test.ok()