()
| 81 | |
| 82 | #[tokio::test] |
| 83 | async fn run() { |
| 84 | let handler = run_mock(); |
| 85 | censor_profane_words().await; |
| 86 | no_profane_words().await; |
| 87 | let _ = handler.sender.send(1); |
| 88 | } |
| 89 | |
| 90 | fn run_mock() -> OneshotHandler { |
| 91 | // SAFETY: This test runs single-threaded; no other threads access env vars. |
nothing calls this directly
no test coverage detected