blob: 3dbc357869f22152a26f2cc5a345f4e20216d576 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#![cfg(feature = "with-rocket")]
#![feature(proc_macro_hygiene, decl_macro)]
#[macro_use]
extern crate rocket;
use askama::Template;
use rocket::http::{ContentType, Status};
use rocket::local::Client;
#[derive(Template)]
#[template(path = "hello.html")]
struct HelloTemplate<'a> {
name: &'a str,
}
#[get("/")]
fn hello() -> HelloTemplate<'static> {
HelloTemplate { name: "world" }
}
#[test]
fn test_rocket() {
let rocket = rocket::ignite().mount("/", routes![hello]);
let client = Client::new(rocket).unwrap();
let mut rsp = client.get("/").dispatch();
assert_eq!(rsp.status(), Status::Ok);
assert_eq!(rsp.content_type(), Some(ContentType::HTML));
assert_eq!(rsp.body_string().unwrap(), "Hello, world!");
}
|