From 7883e42c07acbccc16a2f5de5d1b98de364cc1ad Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Wed, 15 Jun 2022 13:28:09 +0200 Subject: Update to enable some tests for added constructs --- tests/thematic_break.rs | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'tests/thematic_break.rs') diff --git a/tests/thematic_break.rs b/tests/thematic_break.rs index 6435e59..3dc7b5d 100644 --- a/tests/thematic_break.rs +++ b/tests/thematic_break.rs @@ -118,7 +118,7 @@ fn thematic_break() { "should not support thematic breaks w/ other characters (3)" ); - // To do: phrasing. + // To do: attention. // assert_eq!( // micromark(" *-*"), // "

-

", @@ -138,12 +138,11 @@ fn thematic_break() { // "should support thematic breaks mixed w/ lists (2)" // ); - // To do: paragraph. - // assert_eq!( - // micromark("Foo\n***\nbar"), - // "

Foo

\n
\n

bar

", - // "should support thematic breaks interrupting paragraphs" - // ); + assert_eq!( + micromark("Foo\n***\nbar"), + "

Foo

\n
\n

bar

", + "should support thematic breaks interrupting paragraphs" + ); // To do: setext. // assert_eq!( -- cgit