Attribute Macro test
#[test]
Expand description
Marks async test functions to use the Actix Web system entry-point.
ยงExamples
#[actix_web::test]
async fn test() {
assert_eq!(async { "Hello world" }.await, "Hello world");
}
#[test]
Marks async test functions to use the Actix Web system entry-point.
#[actix_web::test]
async fn test() {
assert_eq!(async { "Hello world" }.await, "Hello world");
}