File: test-04-system-path.rs

package info (click to toggle)
rust-actix-macros 0.2.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 204 kB
  • sloc: makefile: 4
file content (10 lines) | stat: -rw-r--r-- 184 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
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() {}