use hirola_macros::html; use hirola_ssr::render_to_string; #[test] fn it_works() { let world = "planet"; let template = html! {

{world}

}; let result = render_to_string(template).unwrap(); assert_eq!("

planet

", result); }