diff options
Diffstat (limited to 'tests/block_quote.rs')
-rw-r--r-- | tests/block_quote.rs | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/tests/block_quote.rs b/tests/block_quote.rs index a448ece..fe7cc5d 100644 --- a/tests/block_quote.rs +++ b/tests/block_quote.rs @@ -51,14 +51,14 @@ fn block_quote() { "should not support lazy setext headings underlines in block quotes" ); - // To do: list. + // To do: list (some bug). // assert_eq!( // micromark("> - a\n> - b"), // "<blockquote>\n<ul>\n<li>a</li>\n<li>b</li>\n</ul>\n</blockquote>", // "should support lists in block quotes" // ); - // To do: list. + // To do: list (some bug). // assert_eq!( // micromark("> - a\n- b"), // "<blockquote>\n<ul>\n<li>a</li>\n</ul>\n</blockquote>\n<ul>\n<li>b</li>\n</ul>", @@ -77,12 +77,11 @@ fn block_quote() { "should not support lazy fenced code in block quotes" ); - // To do: list. - // assert_eq!( - // micromark("> a\n - b"), - // "<blockquote>\n<p>a\n- b</p>\n</blockquote>", - // "should not support lazy indented code (or lazy list) in block quotes" - // ); + assert_eq!( + micromark("> a\n - b"), + "<blockquote>\n<p>a\n- b</p>\n</blockquote>", + "should not support lazy indented code (or lazy list) in block quotes" + ); assert_eq!( micromark(">"), |