1 2 3 4 5 6 7 8 9
#[cfg(test)] use super::hello; #[tokio::main] #[test] async fn hello_test() { assert_eq!(hello().await, "hello"); }