aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hard_break_escape.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/hard_break_escape.rs')
-rw-r--r--tests/hard_break_escape.rs29
1 files changed, 28 insertions, 1 deletions
diff --git a/tests/hard_break_escape.rs b/tests/hard_break_escape.rs
index 2510860..ced3b3d 100644
--- a/tests/hard_break_escape.rs
+++ b/tests/hard_break_escape.rs
@@ -1,5 +1,8 @@
extern crate micromark;
-use micromark::{micromark, micromark_with_options, Constructs, Options};
+use micromark::{
+ mdast::{Break, Node, Paragraph, Position, Root, Text},
+ micromark, micromark_to_mdast, micromark_with_options, Constructs, Options,
+};
use pretty_assertions::assert_eq;
#[test]
@@ -55,5 +58,29 @@ fn hard_break_escape() -> Result<(), String> {
"should support turning off hard break (escape)"
);
+ assert_eq!(
+ micromark_to_mdast("a\\\nb.", &Options::default())?,
+ Node::Root(Root {
+ children: vec![Node::Paragraph(Paragraph {
+ children: vec![
+ Node::Text(Text {
+ value: "a".to_string(),
+ position: Some(Position::new(1, 1, 0, 1, 2, 1))
+ }),
+ Node::Break(Break {
+ position: Some(Position::new(1, 2, 1, 2, 1, 3))
+ }),
+ Node::Text(Text {
+ value: "b.".to_string(),
+ position: Some(Position::new(2, 1, 3, 2, 3, 5))
+ }),
+ ],
+ position: Some(Position::new(1, 1, 0, 2, 3, 5))
+ })],
+ position: Some(Position::new(1, 1, 0, 2, 3, 5))
+ }),
+ "should support hard break (escape) as `Break`s in mdast"
+ );
+
Ok(())
}