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.rs22
1 files changed, 15 insertions, 7 deletions
diff --git a/tests/heading_setext.rs b/tests/heading_setext.rs
index 8d4a5b7..e8d1492 100644
--- a/tests/heading_setext.rs
+++ b/tests/heading_setext.rs
@@ -1,5 +1,5 @@
extern crate micromark;
-use micromark::micromark;
+use micromark::{micromark, micromark_with_options, Constructs, Options};
#[test]
fn heading_setext() {
@@ -256,10 +256,18 @@ fn heading_setext() {
"should not support lazyness (2)"
);
- // To do: turning things off.
- // assert_eq!(
- // micromark("a\n-", {extensions: [{disable: {null: ["setextUnderline"]}}]}),
- // "<p>a\n-</p>",
- // "should support turning off setext underlines"
- // );
+ assert_eq!(
+ micromark_with_options(
+ "a\n-",
+ &Options {
+ constructs: Constructs {
+ heading_setext: false,
+ ..Constructs::default()
+ },
+ ..Options::default()
+ }
+ ),
+ "<p>a\n-</p>",
+ "should support turning off setext underlines"
+ );
}