use rdxl::{xhtml,xtext}; #[test] fn attribute_no_spaces(){ assert_eq!( xhtml!(
dave
), "
dave
".to_string() ); } #[test] fn attribute_autoquote(){ assert_eq!( xhtml!(
dave
), "
dave
".to_string() ); } #[test] fn tattribute_no_spaces(){ assert_eq!( xtext!(
"dave"
), "
dave
".to_string() ); } #[test] fn tattribute_autoquote(){ assert_eq!( xtext!(
"dave"
), "
dave
".to_string() ); }