aboutsummaryrefslogtreecommitdiffstats
path: root/tests/frontmatter.rs
diff options
context:
space:
mode:
authorLibravatar Titus Wormer <tituswormer@gmail.com>2022-10-06 15:57:55 +0200
committerLibravatar Titus Wormer <tituswormer@gmail.com>2022-10-06 15:57:55 +0200
commitcd5bb2d16c6b28332b0b6077b27b2b90a8051896 (patch)
tree848ebc6200b80d2dfdcd67bf0bb245eea06bb24f /tests/frontmatter.rs
parent6e80e03bb6d6af47aba2b339f160e4895ab5afba (diff)
downloadmarkdown-rs-cd5bb2d16c6b28332b0b6077b27b2b90a8051896.tar.gz
markdown-rs-cd5bb2d16c6b28332b0b6077b27b2b90a8051896.tar.bz2
markdown-rs-cd5bb2d16c6b28332b0b6077b27b2b90a8051896.zip
Refactor to split parse from compile options
Diffstat (limited to 'tests/frontmatter.rs')
-rw-r--r--tests/frontmatter.rs15
1 files changed, 9 insertions, 6 deletions
diff --git a/tests/frontmatter.rs b/tests/frontmatter.rs
index e9f6648..335084e 100644
--- a/tests/frontmatter.rs
+++ b/tests/frontmatter.rs
@@ -3,16 +3,19 @@ use micromark::{
mdast::{Node, Root, Toml, Yaml},
micromark, micromark_to_mdast, micromark_with_options,
unist::Position,
- Constructs, Options,
+ Constructs, Options, ParseOptions,
};
use pretty_assertions::assert_eq;
#[test]
fn frontmatter() -> Result<(), String> {
let frontmatter = Options {
- constructs: Constructs {
- frontmatter: true,
- ..Constructs::default()
+ parse: ParseOptions {
+ constructs: Constructs {
+ frontmatter: true,
+ ..Constructs::default()
+ },
+ ..ParseOptions::default()
},
..Options::default()
};
@@ -72,7 +75,7 @@ fn frontmatter() -> Result<(), String> {
);
assert_eq!(
- micromark_to_mdast("---\na: b\n---", &frontmatter)?,
+ micromark_to_mdast("---\na: b\n---", &frontmatter.parse)?,
Node::Root(Root {
children: vec![Node::Yaml(Yaml {
value: "a: b".to_string(),
@@ -84,7 +87,7 @@ fn frontmatter() -> Result<(), String> {
);
assert_eq!(
- micromark_to_mdast("+++\ntitle = \"Jupyter\"\n+++", &frontmatter)?,
+ micromark_to_mdast("+++\ntitle = \"Jupyter\"\n+++", &frontmatter.parse)?,
Node::Root(Root {
children: vec![Node::Toml(Toml {
value: "title = \"Jupyter\"".to_string(),