diff --git a/tests/fuzz.rs b/tests/fuzz.rs index 297e6a96..bf027fb1 100644 --- a/tests/fuzz.rs +++ b/tests/fuzz.rs @@ -117,5 +117,13 @@ fn fuzz() -> Result<(), String> { "11: gfm task list items followed by eols (GH-24)" ); + assert!( + matches!( + to_mdast("=\n=\n=\na\n=", &Default::default()), + Ok(mdast::Node::Root(_)) + ), + "yy: setext headings next to each other (GH-31)" + ); + Ok(()) }