mirror of https://github.com/rwf2/Rocket.git
15 lines
314 B
Rust
15 lines
314 B
Rust
use rocket::local::blocking::Client;
|
|
|
|
struct SpawnBlockingOnDrop;
|
|
|
|
impl Drop for SpawnBlockingOnDrop {
|
|
fn drop(&mut self) {
|
|
rocket::tokio::task::spawn_blocking(|| ());
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn test_access_runtime_in_state_drop() {
|
|
Client::debug(rocket::ignite().manage(SpawnBlockingOnDrop)).unwrap();
|
|
}
|