diff options
Diffstat (limited to 'renderer')
| -rw-r--r-- | renderer/src/html/tests.rs | 22 | 
1 files changed, 22 insertions, 0 deletions
| diff --git a/renderer/src/html/tests.rs b/renderer/src/html/tests.rs index 5d63fcb..6387238 100644 --- a/renderer/src/html/tests.rs +++ b/renderer/src/html/tests.rs @@ -338,6 +338,28 @@ paragraph</p>  ");  } +#[test] +fn comments() { +	check_renders_to("\ +.. Run-in +   comment + +.. + +    block-like + +    with blank lines +", "\ +<!--Run-in +comment +--> +<!--block-like + +with blank lines +-->\ +"); +} +  /*  #[test]  fn test_field_list() { | 
