diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-09-07 15:53:06 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-09-07 15:53:06 +0200 |
commit | 1d92666865b35341e076efbefddf6e73b5e1542e (patch) | |
tree | 11c05985ec7679f73473e7ea2c769465698e2f08 /tests/heading_atx.rs | |
parent | e6018e52ee6ad9a8f8a0672b75bf515faf74af1f (diff) | |
download | markdown-rs-1d92666865b35341e076efbefddf6e73b5e1542e.tar.gz markdown-rs-1d92666865b35341e076efbefddf6e73b5e1542e.tar.bz2 markdown-rs-1d92666865b35341e076efbefddf6e73b5e1542e.zip |
Add support for recoverable syntax errors
Diffstat (limited to 'tests/heading_atx.rs')
-rw-r--r-- | tests/heading_atx.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/heading_atx.rs b/tests/heading_atx.rs index 715b17a..1bd437c 100644 --- a/tests/heading_atx.rs +++ b/tests/heading_atx.rs @@ -3,7 +3,7 @@ use micromark::{micromark, micromark_with_options, Constructs, Options}; use pretty_assertions::assert_eq; #[test] -fn heading_atx() { +fn heading_atx() -> Result<(), String> { assert_eq!( micromark("# foo"), "<h1>foo</h1>", @@ -212,8 +212,10 @@ fn heading_atx() { }, ..Options::default() } - ), + )?, "<p># a</p>", "should support turning off heading (atx)" ); + + Ok(()) } |