actix-macros 0.2.2

Macros for Actix system and runtime
Documentation
mod system {
    pub use actix_rt::System as MySystem;
}

#[actix_rt::test(system = "system::MySystem")]
async fn my_test() {
    futures_util::future::ready(()).await
}

fn main() {}