aboutsummaryrefslogtreecommitdiffstats
path: root/tests/misc_tabs.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/misc_tabs.rs')
-rw-r--r--tests/misc_tabs.rs24
1 files changed, 11 insertions, 13 deletions
diff --git a/tests/misc_tabs.rs b/tests/misc_tabs.rs
index e7aad07..e82738d 100644
--- a/tests/misc_tabs.rs
+++ b/tests/misc_tabs.rs
@@ -123,19 +123,17 @@ fn tabs_flow() {
"should support tabs in HTML (if whitespace is allowed)"
);
- // To do: list (prefer thematic break).
- // assert_eq!(
- // micromark("*\t*\t*\t"),
- // "<hr />",
- // "should support tabs in thematic breaks"
- // );
-
- // To do: list (prefer thematic break).
- // assert_eq!(
- // micromark("*\t\t*\t\t*\t\t"),
- // "<hr />",
- // "should support arbitrary tabs in thematic breaks"
- // );
+ assert_eq!(
+ micromark("*\t*\t*\t"),
+ "<hr />",
+ "should support tabs in thematic breaks"
+ );
+
+ assert_eq!(
+ micromark("*\t\t*\t\t*\t\t"),
+ "<hr />",
+ "should support arbitrary tabs in thematic breaks"
+ );
}
#[test]