aboutsummaryrefslogtreecommitdiffstats
path: root/tests/list.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/list.rs')
-rw-r--r--tests/list.rs21
1 files changed, 10 insertions, 11 deletions
diff --git a/tests/list.rs b/tests/list.rs
index e773a84..2819bdb 100644
--- a/tests/list.rs
+++ b/tests/list.rs
@@ -429,19 +429,18 @@ fn list() {
"should support tight lists w/ a blank line in a sublist"
);
- // To do: list (loose/tight bug).
- // assert_eq!(
- // micromark("* a\n > b\n >\n* c"),
- // "<ul>\n<li>a\n<blockquote>\n<p>b</p>\n</blockquote>\n</li>\n<li>c</li>\n</ul>",
- // "should support tight lists w/ a blank line in a block quote"
- // );
+ assert_eq!(
+ micromark("* a\n > b\n >\n* c"),
+ "<ul>\n<li>a\n<blockquote>\n<p>b</p>\n</blockquote>\n</li>\n<li>c</li>\n</ul>",
+ "should support tight lists w/ a blank line in a block quote"
+ );
// To do: list (some crash).
- // assert_eq!(
- // micromark("- a\n > b\n ```\n c\n ```\n- d"),
- // "<ul>\n<li>a\n<blockquote>\n<p>b</p>\n</blockquote>\n<pre><code>c\n</code></pre>\n</li>\n<li>d</li>\n</ul>",
- // "should support tight lists w/ flow w/o blank line"
- // );
+ assert_eq!(
+ micromark("- a\n > b\n ```\n c\n ```\n- d"),
+ "<ul>\n<li>a\n<blockquote>\n<p>b</p>\n</blockquote>\n<pre><code>c\n</code></pre>\n</li>\n<li>d</li>\n</ul>",
+ "should support tight lists w/ flow w/o blank line"
+ );
assert_eq!(
micromark("- a"),