From 55a6f8560cf88b655f49f1a1a59f6c1dc6afe022 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Tue, 5 Jul 2022 13:49:56 +0200 Subject: Fix resizing attention bug --- tests/attention.rs | 66 +++++++++++++++++++++++++----------------------------- 1 file changed, 30 insertions(+), 36 deletions(-) (limited to 'tests/attention.rs') diff --git a/tests/attention.rs b/tests/attention.rs index 11ba7d8..6ab173b 100644 --- a/tests/attention.rs +++ b/tests/attention.rs @@ -559,12 +559,11 @@ fn attention() { "should support strong emphasis around the other marker" ); - // To do: resizing attention bug? - // assert_eq!( - // micromark("**foo*"), - // "

*foo

", - // "should support a superfluous marker at the start of emphasis" - // ); + assert_eq!( + micromark("**foo*"), + "

*foo

", + "should support a superfluous marker at the start of emphasis" + ); assert_eq!( micromark("*foo**"), @@ -572,19 +571,17 @@ fn attention() { "should support a superfluous marker at the end of emphasis" ); - // To do: resizing attention bug? - // assert_eq!( - // micromark("***foo**"), - // "

*foo

", - // "should support a superfluous marker at the start of strong" - // ); + assert_eq!( + micromark("***foo**"), + "

*foo

", + "should support a superfluous marker at the start of strong" + ); - // To do: resizing attention bug? - // assert_eq!( - // micromark("****foo*"), - // "

***foo

", - // "should support multiple superfluous markers at the start of strong" - // ); + assert_eq!( + micromark("****foo*"), + "

***foo

", + "should support multiple superfluous markers at the start of strong" + ); assert_eq!( micromark("**foo***"), @@ -635,12 +632,11 @@ fn attention() { "should support strong emphasis around the other marker" ); - // To do: resizing attention bug? - // assert_eq!( - // micromark("__foo_"), - // "

_foo

", - // "should support a superfluous marker at the start of emphasis" - // ); + assert_eq!( + micromark("__foo_"), + "

_foo

", + "should support a superfluous marker at the start of emphasis" + ); assert_eq!( micromark("_foo__"), @@ -648,19 +644,17 @@ fn attention() { "should support a superfluous marker at the end of emphasis" ); - // To do: resizing attention bug? - // assert_eq!( - // micromark("___foo__"), - // "

_foo

", - // "should support a superfluous marker at the start of strong" - // ); + assert_eq!( + micromark("___foo__"), + "

_foo

", + "should support a superfluous marker at the start of strong" + ); - // To do: resizing attention bug? - // assert_eq!( - // micromark("____foo_"), - // "

___foo

", - // "should support multiple superfluous markers at the start of strong" - // ); + assert_eq!( + micromark("____foo_"), + "

___foo

", + "should support multiple superfluous markers at the start of strong" + ); assert_eq!( micromark("__foo___"), -- cgit