From 9fdde71347074c2848dc0aa838d6261e82ddb437 Mon Sep 17 00:00:00 2001 From: Christian Murphy Date: Fri, 25 Nov 2022 09:56:08 -0700 Subject: [PATCH] test: two setext headings next to each other --- tests/fuzz.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/fuzz.rs b/tests/fuzz.rs index 4778cbb8..d76a2700 100644 --- a/tests/fuzz.rs +++ b/tests/fuzz.rs @@ -129,5 +129,13 @@ fn fuzz() -> Result<(), String> { "12: mdx: handle invalid mdx without panic (GH-26)" ); + assert!( + matches!( + to_mdast("=\n=\n=\na\n=", &Default::default()), + Ok(mdast::Node::Root(_)) + ), + "yy: setext headings next to each other (GH-31)" + ); + Ok(()) }