mirror of
https://github.com/lune-org/lune.git
synced 2024-12-12 21:10:36 +00:00
7 lines
258 B
Lua
7 lines
258 B
Lua
local process = require("@lune/process")
|
|
|
|
-- Spawning a child process for a non-existent
|
|
-- program should not panic, but should error
|
|
|
|
local success = pcall(process.spawn, "someProgramThatDoesNotExist")
|
|
assert(not success, "Spawned a non-existent program")
|