18 lines
399 B
Rust
18 lines
399 B
Rust
|
use actix_web_codegen_const_routes::*;
|
||
|
|
||
|
#[route("/", method="GET", method="GET")]
|
||
|
async fn index() -> String {
|
||
|
"Hello World!".to_owned()
|
||
|
}
|
||
|
|
||
|
#[actix_web::main]
|
||
|
async fn main() {
|
||
|
use actix_web::App;
|
||
|
|
||
|
let srv = actix_test::start(|| App::new().service(index));
|
||
|
|
||
|
let request = srv.get("/");
|
||
|
let response = request.send().await.unwrap();
|
||
|
assert!(response.status().is_success());
|
||
|
}
|