aboutsummaryrefslogtreecommitdiffstats
path: root/src/renderer/html_tests.rs
diff options
context:
space:
mode:
authorPhilipp A2019-12-08 16:55:21 +0100
committerPhilipp A2019-12-08 17:13:15 +0100
commit13ecb9436b5987237062a79c21b1630689d4715d (patch)
treec410ed45edfff10c5d09e9c38e1fd90f1ef9f7e9 /src/renderer/html_tests.rs
parent588f2474c4f13417c9dae18defc657fcb6c0f07e (diff)
downloadrust-rst-13ecb9436b5987237062a79c21b1630689d4715d.tar.bz2
Render emph, strong, and literal
Diffstat (limited to 'src/renderer/html_tests.rs')
-rw-r--r--src/renderer/html_tests.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/renderer/html_tests.rs b/src/renderer/html_tests.rs
index c12890a..32871dc 100644
--- a/src/renderer/html_tests.rs
+++ b/src/renderer/html_tests.rs
@@ -23,8 +23,8 @@ fn test_simple_string() {
#[test]
fn test_simple_string_with_markup() {
check_renders_to(
- "Simple String with *markup*",
- "<p>Simple String with <em>markup</em></p>",
+ "Simple String with *emph* and **strong**",
+ "<p>Simple String with <em>emph</em> and <strong>strong</strong></p>",
);
}