use super::*; #[test] fn test_italic() { test_html_compile!( "Boring *italic* boring" => "
Boring italic boring
" ); } #[test] fn test_bold() { test_html_compile!( "Boring **bold** boring" => "Boring bold boring
" ); } #[test] fn test_small() { test_html_compile!( "$small[Small text]" => "Small text
" ); }