Rocket/core/lib/tests/content-length.rs

16 lines
390 B
Rust
Raw Permalink Normal View History

#[macro_use]
extern crate rocket;
#[get("/")]
fn index() -> String {
"Hello, world!".into()
}
#[test]
fn content_length_header() {
let rocket = rocket::build().mount("/", routes![index]);
let client = rocket::local::blocking::Client::debug(rocket).unwrap();
let response = client.get("/").dispatch();
assert!(response.headers().get_one("Content-Length").is_some());
}