From 1d92666865b35341e076efbefddf6e73b5e1542e Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Wed, 7 Sep 2022 15:53:06 +0200 Subject: Add support for recoverable syntax errors --- tests/image.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'tests/image.rs') diff --git a/tests/image.rs b/tests/image.rs index e7865e6..966b653 100644 --- a/tests/image.rs +++ b/tests/image.rs @@ -3,7 +3,7 @@ use micromark::{micromark, micromark_with_options, Constructs, Options}; use pretty_assertions::assert_eq; #[test] -fn image() { +fn image() -> Result<(), String> { assert_eq!( micromark("[link](/uri \"title\")"), "

link

", @@ -202,7 +202,7 @@ fn image() { }, ..Options::default() } - ), + )?, "

!x

", "should support turning off label start (image)" ); @@ -220,8 +220,10 @@ fn image() { allow_dangerous_protocol: true, ..Options::default() } - ), + )?, "

\"\"

", "should allow non-http protocols w/ `allowDangerousProtocol`" ); + + Ok(()) } -- cgit