You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
async-std/tests/block_on.rs

19 lines
316 B
Rust

#![feature(async_await)]
use async_std::task;
#[test]
fn smoke() {
let res = task::block_on(async { 1 + 2 });
assert_eq!(res, 3);
}
#[test]
#[should_panic = "foo"]
fn panic() {
task::block_on(async {
// This panic should get propagated into the parent thread.
panic!("foo");
});
}