diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-06-15 13:28:09 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-06-15 13:28:09 +0200 |
commit | 7883e42c07acbccc16a2f5de5d1b98de364cc1ad (patch) | |
tree | 78cf2a8349968b45a40b0191e0209d89459cfc24 /tests/thematic_break.rs | |
parent | 2f37ee269725b82913e937fbaaed909f10e4c464 (diff) | |
download | markdown-rs-7883e42c07acbccc16a2f5de5d1b98de364cc1ad.tar.gz markdown-rs-7883e42c07acbccc16a2f5de5d1b98de364cc1ad.tar.bz2 markdown-rs-7883e42c07acbccc16a2f5de5d1b98de364cc1ad.zip |
Update to enable some tests for added constructs
Diffstat (limited to 'tests/thematic_break.rs')
-rw-r--r-- | tests/thematic_break.rs | 13 |
1 files changed, 6 insertions, 7 deletions
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(" *-*"), // "<p><em>-</em></p>", @@ -138,12 +138,11 @@ fn thematic_break() { // "should support thematic breaks mixed w/ lists (2)" // ); - // To do: paragraph. - // assert_eq!( - // micromark("Foo\n***\nbar"), - // "<p>Foo</p>\n<hr />\n<p>bar</p>", - // "should support thematic breaks interrupting paragraphs" - // ); + assert_eq!( + micromark("Foo\n***\nbar"), + "<p>Foo</p>\n<hr />\n<p>bar</p>", + "should support thematic breaks interrupting paragraphs" + ); // To do: setext. // assert_eq!( |