aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib.rs
diff options
context:
space:
mode:
authorLibravatar Titus Wormer <tituswormer@gmail.com>2022-06-15 13:28:09 +0200
committerLibravatar Titus Wormer <tituswormer@gmail.com>2022-06-15 13:28:09 +0200
commit7883e42c07acbccc16a2f5de5d1b98de364cc1ad (patch)
tree78cf2a8349968b45a40b0191e0209d89459cfc24 /tests/lib.rs
parent2f37ee269725b82913e937fbaaed909f10e4c464 (diff)
downloadmarkdown-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.rs8
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 &lt; 3</p>", "should encode");
-}