aboutsummaryrefslogtreecommitdiffstats
path: root/tests/misc_dangerous_html.rs
diff options
context:
space:
mode:
authorLibravatar Titus Wormer <tituswormer@gmail.com>2022-10-13 10:40:01 +0200
committerLibravatar Titus Wormer <tituswormer@gmail.com>2022-10-13 10:40:01 +0200
commitec2d1bfb4232178fb3a6cba36f138bc6efbbf34a (patch)
tree2da4be3be22c2324c48cb17133b3f4b26b9139d2 /tests/misc_dangerous_html.rs
parent861af95c119721e814460fa7dc32bd3d74b38484 (diff)
downloadmarkdown-rs-ec2d1bfb4232178fb3a6cba36f138bc6efbbf34a.tar.gz
markdown-rs-ec2d1bfb4232178fb3a6cba36f138bc6efbbf34a.tar.bz2
markdown-rs-ec2d1bfb4232178fb3a6cba36f138bc6efbbf34a.zip
Rename crate to `markdown`
Diffstat (limited to 'tests/misc_dangerous_html.rs')
-rw-r--r--tests/misc_dangerous_html.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/misc_dangerous_html.rs b/tests/misc_dangerous_html.rs
index 9787813..6de045f 100644
--- a/tests/misc_dangerous_html.rs
+++ b/tests/misc_dangerous_html.rs
@@ -1,5 +1,5 @@
-extern crate micromark;
-use micromark::{micromark, micromark_with_options, CompileOptions, Options};
+extern crate markdown;
+use markdown::{to_html, to_html_with_options, CompileOptions, Options};
use pretty_assertions::assert_eq;
#[test]
@@ -14,19 +14,19 @@ fn dangerous_html() -> Result<(), String> {
};
assert_eq!(
- micromark("<x>"),
+ to_html("<x>"),
"&lt;x&gt;",
"should be safe by default for flow"
);
assert_eq!(
- micromark("a<b>"),
+ to_html("a<b>"),
"<p>a&lt;b&gt;</p>",
"should be safe by default for text"
);
assert_eq!(
- micromark_with_options("<x>", danger)?,
+ to_html_with_options("<x>", danger)?,
"<x>",
"should be unsafe w/ `allowDangerousHtml`"
);