1
0
Fork 0
firefox/third_party/rust/tokio/tests/task_yield_now.rs
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

17 lines
424 B
Rust

#![allow(unknown_lints, unexpected_cfgs)]
#![cfg(all(feature = "full", tokio_unstable))]
use tokio::task;
use tokio_test::task::spawn;
// `yield_now` is tested within the runtime in `rt_common`.
#[test]
fn yield_now_outside_of_runtime() {
let mut task = spawn(async {
task::yield_now().await;
});
assert!(task.poll().is_pending());
assert!(task.is_woken());
assert!(task.poll().is_ready());
}