1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
#![cfg(feature = "alloc")] #[macro_use] extern crate horrorshow; use horrorshow::Template; #[test] fn test_void() { assert_eq!( html! { div; br; input(foo="bar"); img } .into_string() .unwrap(), "<div></div><br><input foo=\"bar\"><img>" ); }