mirror of
https://github.com/lune-org/lune.git
synced 2024-12-12 13:00:37 +00:00
39 lines
821 B
Lua
39 lines
821 B
Lua
local function test(f, ...)
|
|
local success, message = pcall(f, ...)
|
|
assert(not success, "Function did not throw an error")
|
|
assert(type(message) == "userdata", "Pcall did not return a proper error")
|
|
end
|
|
|
|
-- These are not async but should be pcallable
|
|
|
|
test(error, "Test error", 2)
|
|
|
|
-- Net request is async and will throw a DNS error here for the weird address
|
|
|
|
test(net.request, "https://wxyz.google.com")
|
|
|
|
-- Net serve is async and will throw an OS error when trying to serve twice on the same port
|
|
|
|
local handle = net.serve(8080, function()
|
|
return ""
|
|
end)
|
|
|
|
task.delay(0, function()
|
|
handle.stop()
|
|
end)
|
|
|
|
test(net.serve, 8080, function() end)
|
|
|
|
local function e()
|
|
task.spawn(function()
|
|
task.defer(function()
|
|
task.delay(0, function()
|
|
error({
|
|
Hello = "World",
|
|
})
|
|
end)
|
|
end)
|
|
end)
|
|
end
|
|
|
|
task.defer(e)
|