mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2025-01-26 04:38:09 +00:00
Use uri! macro to generate URI strings
This commit is contained in:
parent
7967dd91c2
commit
84a3d53075
1 changed files with 6 additions and 2 deletions
|
@ -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 a new issue