From 5403261e8213f68633a09fc3e9bc2e6e2cd777b2 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Mon, 18 Jul 2022 16:31:14 +0200 Subject: Add support for turning off constructs --- tests/thematic_break.rs | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) (limited to 'tests/thematic_break.rs') diff --git a/tests/thematic_break.rs b/tests/thematic_break.rs index 0cedada..1bb66cc 100644 --- a/tests/thematic_break.rs +++ b/tests/thematic_break.rs @@ -1,5 +1,5 @@ extern crate micromark; -use micromark::micromark; +use micromark::{micromark, micromark_with_options, Constructs, Options}; #[test] fn thematic_break() { @@ -165,10 +165,18 @@ fn thematic_break() { "should not support lazyness (2)" ); - // To do: turning things off. - // assert_eq!( - // micromark("***", {extensions: [{disable: {null: ["thematicBreak"]}}]}), - // "

***

", - // "should support turning off thematic breaks" - // ); + assert_eq!( + micromark_with_options( + "***", + &Options { + constructs: Constructs { + thematic_break: false, + ..Constructs::default() + }, + ..Options::default() + } + ), + "

***

", + "should support turning off thematic breaks" + ); } -- cgit