()
| 148 | #[tokio::test] |
| 149 | #[should_panic(expected = "foo")] |
| 150 | async fn panic_resume() { |
| 151 | // this should panic w/o an `unwrap` |
| 152 | SpawnedTask::spawn(async { panic!("foo") }) |
| 153 | .join_unwind() |
| 154 | .await |
| 155 | .ok(); |
| 156 | } |
| 157 | |
| 158 | #[tokio::test] |
| 159 | async fn cancel_not_started_task() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…