diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-06-15 13:28:09 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-06-15 13:28:09 +0200 |
commit | 7883e42c07acbccc16a2f5de5d1b98de364cc1ad (patch) | |
tree | 78cf2a8349968b45a40b0191e0209d89459cfc24 /tests/lib.rs | |
parent | 2f37ee269725b82913e937fbaaed909f10e4c464 (diff) | |
download | markdown-rs-7883e42c07acbccc16a2f5de5d1b98de364cc1ad.tar.gz markdown-rs-7883e42c07acbccc16a2f5de5d1b98de364cc1ad.tar.bz2 markdown-rs-7883e42c07acbccc16a2f5de5d1b98de364cc1ad.zip |
Update to enable some tests for added constructs
Diffstat (limited to '')
-rw-r--r-- | tests/lib.rs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/lib.rs b/tests/lib.rs deleted file mode 100644 index 18fcef2..0000000 --- a/tests/lib.rs +++ /dev/null @@ -1,8 +0,0 @@ -extern crate micromark; -use micromark::micromark; - -#[test] -fn basic() { - assert_eq!(micromark("asd"), "<p>asd</p>", "should work"); - assert_eq!(micromark("1 < 3"), "<p>1 < 3</p>", "should encode"); -} |