aboutsummaryrefslogtreecommitdiffstats
path: root/askama_rocket/tests/basic.rs
diff options
context:
space:
mode:
authorLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2021-12-21 23:18:06 +0100
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2022-01-04 21:30:15 +0100
commit4089181f72c6e9c96cceff4dd0905bcda208ec05 (patch)
tree3812e1a4ad7fd7f3e2ae54b2803a1fd3fa8b93e7 /askama_rocket/tests/basic.rs
parent42d80ad6cdb1a4ff9ff8fcc088b25d5f7b66a393 (diff)
downloadaskama-4089181f72c6e9c96cceff4dd0905bcda208ec05.tar.gz
askama-4089181f72c6e9c96cceff4dd0905bcda208ec05.tar.bz2
askama-4089181f72c6e9c96cceff4dd0905bcda208ec05.zip
askama_rocket: revert to rocket 0.4 for release
Diffstat (limited to 'askama_rocket/tests/basic.rs')
-rw-r--r--askama_rocket/tests/basic.rs12
1 files changed, 7 insertions, 5 deletions
diff --git a/askama_rocket/tests/basic.rs b/askama_rocket/tests/basic.rs
index bfdb183..0671c4c 100644
--- a/askama_rocket/tests/basic.rs
+++ b/askama_rocket/tests/basic.rs
@@ -1,10 +1,12 @@
+#![feature(proc_macro_hygiene, decl_macro)]
+
#[macro_use]
extern crate rocket;
use askama::Template;
use rocket::http::{ContentType, Status};
-use rocket::local::blocking::Client;
+use rocket::local::Client;
#[derive(Template)]
#[template(path = "hello.html")]
@@ -19,10 +21,10 @@ fn hello() -> HelloTemplate<'static> {
#[test]
fn test_rocket() {
- let rocket = rocket::build().mount("/", routes![hello]);
- let client = Client::tracked(rocket).unwrap();
- let rsp = client.get("/").dispatch();
+ 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.into_string().unwrap(), "Hello, world!");
+ assert_eq!(rsp.body_string().unwrap(), "Hello, world!");
}