diff options
Diffstat (limited to 'tests/code_fenced.rs')
-rw-r--r-- | tests/code_fenced.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/code_fenced.rs b/tests/code_fenced.rs index fd35eb8..850bd1b 100644 --- a/tests/code_fenced.rs +++ b/tests/code_fenced.rs @@ -3,7 +3,7 @@ use micromark::{micromark, micromark_with_options, Constructs, Options}; use pretty_assertions::assert_eq; #[test] -fn code_fenced() { +fn code_fenced() -> Result<(), String> { assert_eq!( micromark("```\n<\n >\n```"), "<pre><code><\n >\n</code></pre>", @@ -267,8 +267,10 @@ fn code_fenced() { }, ..Options::default() } - ), + )?, "<p>```</p>", "should support turning off code (fenced)" ); + + Ok(()) } |