From 2a4c610b6f53926c2c52bb2500e4db3594756c64 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Mon, 10 Jun 2024 09:25:49 +0530 Subject: [PATCH] feat(tests): update tests list --- crates/lune/src/tests.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/crates/lune/src/tests.rs b/crates/lune/src/tests.rs index e1b22c25..d4d30527 100644 --- a/crates/lune/src/tests.rs +++ b/crates/lune/src/tests.rs @@ -145,6 +145,9 @@ create_tests! { process_exec_shell: "process/exec/shell", process_exec_stdin: "process/exec/stdin", process_exec_stdio: "process/exec/stdio", + process_spawn_non_blocking: "process/spawn/non_blocking", + process_spawn_status: "process/spawn/status", + process_spawn_stream: "process/spawn/stream", } #[cfg(feature = "std-regex")] @@ -249,6 +252,6 @@ create_tests! { task_cancel: "task/cancel", task_defer: "task/defer", task_delay: "task/delay", - task_exec: "task/exec", + task_spawn: "task/spawn", task_wait: "task/wait", }