aboutsummaryrefslogtreecommitdiffstats
path: root/tests/heading_setext.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/heading_setext.rs')
-rw-r--r--tests/heading_setext.rs21
1 files changed, 20 insertions, 1 deletions
diff --git a/tests/heading_setext.rs b/tests/heading_setext.rs
index b2889f5..4292ed2 100644
--- a/tests/heading_setext.rs
+++ b/tests/heading_setext.rs
@@ -1,5 +1,8 @@
extern crate micromark;
-use micromark::{micromark, micromark_with_options, Constructs, Options};
+use micromark::{
+ mdast::{Heading, Node, Position, Root, Text},
+ micromark, micromark_to_mdast, micromark_with_options, Constructs, Options,
+};
use pretty_assertions::assert_eq;
#[test]
@@ -284,5 +287,21 @@ fn heading_setext() -> Result<(), String> {
"should support turning off setext underlines"
);
+ assert_eq!(
+ micromark_to_mdast("alpha\nbravo\n==", &Options::default())?,
+ Node::Root(Root {
+ children: vec![Node::Heading(Heading {
+ depth: 1,
+ children: vec![Node::Text(Text {
+ value: "alpha\nbravo".to_string(),
+ position: Some(Position::new(1, 1, 0, 2, 6, 11))
+ }),],
+ position: Some(Position::new(1, 1, 0, 3, 3, 14))
+ })],
+ position: Some(Position::new(1, 1, 0, 3, 3, 14))
+ }),
+ "should support heading (atx) as `Heading`s in mdast"
+ );
+
Ok(())
}