diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/fuzz.rs | 12 | 
1 files changed, 12 insertions, 0 deletions
| diff --git a/tests/fuzz.rs b/tests/fuzz.rs index 297e6a9..4778cbb 100644 --- a/tests/fuzz.rs +++ b/tests/fuzz.rs @@ -117,5 +117,17 @@ fn fuzz() -> Result<(), String> {          "11: gfm task list items followed by eols (GH-24)"      ); +    assert_eq!( +        markdown::to_html_with_options( +            "<", +            &markdown::Options { +                parse: markdown::ParseOptions::mdx(), +                ..Default::default() +            } +        ), +        Ok("<p><</p>".to_string()), +        "12: mdx: handle invalid mdx without panic (GH-26)" +    ); +      Ok(())  } | 
