hoc/tests/resources.rs

17 lines
347 B
Rust
Raw Normal View History

2022-02-01 19:16:47 +01:00
mod util;
#[actix_rt::test]
async fn favicon() {
let test_app = util::spawn_app().await;
let client = awc::Client::default();
let response = client
.get(&format!("{}/favicon.ico", test_app.address))
.send()
.await
.expect("Failed to execute request");
assert!(response.status().is_success());
}