Use uri! macro to generate URI strings
This commit is contained in:
parent
7967dd91c2
commit
84a3d53075
@ -401,8 +401,12 @@ mod tests {
|
|||||||
|
|
||||||
let (_instance, user, blog, post) = create_models(conn);
|
let (_instance, user, blog, post) = create_models(conn);
|
||||||
|
|
||||||
let blog_path = format!("/~/{}", blog.fqn);
|
let blog_path = uri!(super::activity_details: name = &blog.fqn).to_string();
|
||||||
let edit_link = format!(r#"href="{}/{}/edit""#, blog_path, post.slug);
|
let edit_link = uri!(
|
||||||
|
super::super::posts::edit: blog = &blog.fqn,
|
||||||
|
slug = &post.slug
|
||||||
|
)
|
||||||
|
.to_string();
|
||||||
|
|
||||||
let mut response = client.get(&blog_path).dispatch();
|
let mut response = client.get(&blog_path).dispatch();
|
||||||
let body = response.body_string().unwrap();
|
let body = response.body_string().unwrap();
|
||||||
|
Loading…
Reference in New Issue
Block a user