From cba78821ed13d5a92c74d092914fbad4c842f889 Mon Sep 17 00:00:00 2001
From: Titus Wormer
Date: Thu, 9 Jun 2022 14:03:04 +0200
Subject: Add temporary support for stripping whitespace
---
tests/code_indented.rs | 11 +++++------
tests/heading_atx.rs | 11 +++++------
tests/html_flow.rs | 11 +++++------
tests/thematic_break.rs | 11 +++++------
4 files changed, 20 insertions(+), 24 deletions(-)
(limited to 'tests')
diff --git a/tests/code_indented.rs b/tests/code_indented.rs
index 80dae4b..5967cb3 100644
--- a/tests/code_indented.rs
+++ b/tests/code_indented.rs
@@ -40,12 +40,11 @@ fn code_indented() {
"should support blank lines in indented code (3)"
);
- // To do: strip whitespace.
- // assert_eq!(
- // micromark("Foo\n bar"),
- // "Foo\nbar
",
- // "should not support interrupting paragraphs"
- // );
+ assert_eq!(
+ micromark("Foo\n bar"),
+ "Foo\nbar
",
+ "should not support interrupting paragraphs"
+ );
assert_eq!(
micromark(" foo\nbar"),
diff --git a/tests/heading_atx.rs b/tests/heading_atx.rs
index 7a830fe..defc77f 100644
--- a/tests/heading_atx.rs
+++ b/tests/heading_atx.rs
@@ -99,12 +99,11 @@ fn heading_atx() {
"should not support four initial spaces"
);
- // To do: strip whitespace.
- // assert_eq!(
- // micromark("foo\n # bar"),
- // "foo\n# bar
",
- // "should not support four initial spaces when interrupting"
- // );
+ assert_eq!(
+ micromark("foo\n # bar"),
+ "foo\n# bar
",
+ "should not support four initial spaces when interrupting"
+ );
assert_eq!(
micromark("## foo ##"),
diff --git a/tests/html_flow.rs b/tests/html_flow.rs
index 18eff2d..0a5ec72 100644
--- a/tests/html_flow.rs
+++ b/tests/html_flow.rs
@@ -814,12 +814,11 @@ fn html_flow_7_complete() {
"should not support a line ending directly after a tag name"
);
- // To do: trim trailing whitespace.
- // assert_eq!(
- // micromark_with_options("<x
",
- // "should not support an eof after a space directly after a tag name"
- // );
+ assert_eq!(
+ micromark_with_options("<x",
+ "should not support an eof after a space directly after a tag name"
+ );
assert_eq!(
micromark_with_options("Foo\n***",
- // "should not support thematic breaks w/ 4 spaces as paragraph continuation"
- // );
+ assert_eq!(
+ micromark("Foo\n ***"),
+ "Foo\n***
",
+ "should not support thematic breaks w/ 4 spaces as paragraph continuation"
+ );
assert_eq!(
micromark("_____________________________________"),
--
cgit