aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Felder <feld@FreeBSD.org>2020-12-11 17:28:00 -0600
committerMark Felder <feld@FreeBSD.org>2020-12-11 17:28:00 -0600
commitf318d8e56df1e30f41c7ddf2e306b3552034921f (patch)
treeab8a14f26eb70affc138d6872ffd832a90aa0e93
parent6520599b7deac56780e1496c969cc45ff2e9f5da (diff)
downloadpleroma-f318d8e56df1e30f41c7ddf2e306b3552034921f.tar.gz
Use Pleroma.Formatter.markdown_to_html/1 in the tests
-rw-r--r--test/pleroma/earmark_renderer_test.exs28
1 files changed, 14 insertions, 14 deletions
diff --git a/test/pleroma/earmark_renderer_test.exs b/test/pleroma/earmark_renderer_test.exs
index 220d97d16..3adbefc1e 100644
--- a/test/pleroma/earmark_renderer_test.exs
+++ b/test/pleroma/earmark_renderer_test.exs
@@ -6,74 +6,74 @@ defmodule Pleroma.EarmarkRendererTest do
test "Paragraph" do
code = ~s[Hello\n\nWorld!]
- result = Earmark.as_html!(code, %Earmark.Options{renderer: Pleroma.EarmarkRenderer})
+ result = Pleroma.Formatter.markdown_to_html(code)
assert result == "<p>Hello</p><p>World!</p>"
end
test "raw HTML" do
code = ~s[<a href="http://example.org/">OwO</a><!-- what's this?-->]
- result = Earmark.as_html!(code, %Earmark.Options{renderer: Pleroma.EarmarkRenderer})
+ result = Pleroma.Formatter.markdown_to_html(code)
assert result == "<p>#{code}</p>"
end
test "rulers" do
code = ~s[before\n\n-----\n\nafter]
- result = Earmark.as_html!(code, %Earmark.Options{renderer: Pleroma.EarmarkRenderer})
+ result = Pleroma.Formatter.markdown_to_html(code)
assert result == "<p>before</p><hr /><p>after</p>"
end
test "headings" do
code = ~s[# h1\n## h2\n### h3\n]
- result = Earmark.as_html!(code, %Earmark.Options{renderer: Pleroma.EarmarkRenderer})
+ result = Pleroma.Formatter.markdown_to_html(code)
assert result == ~s[<h1>h1</h1><h2>h2</h2><h3>h3</h3>]
end
test "blockquote" do
code = ~s[> whoms't are you quoting?]
- result = Earmark.as_html!(code, %Earmark.Options{renderer: Pleroma.EarmarkRenderer})
+ result = Pleroma.Formatter.markdown_to_html(code)
assert result == "<blockquote><p>whoms’t are you quoting?</p></blockquote>"
end
test "code" do
code = ~s[`mix`]
- result = Earmark.as_html!(code, %Earmark.Options{renderer: Pleroma.EarmarkRenderer})
+ result = Pleroma.Formatter.markdown_to_html(code)
assert result == ~s[<p><code class="inline">mix</code></p>]
code = ~s[``mix``]
- result = Earmark.as_html!(code, %Earmark.Options{renderer: Pleroma.EarmarkRenderer})
+ result = Pleroma.Formatter.markdown_to_html(code)
assert result == ~s[<p><code class="inline">mix</code></p>]
code = ~s[```\nputs "Hello World"\n```]
- result = Earmark.as_html!(code, %Earmark.Options{renderer: Pleroma.EarmarkRenderer})
+ result = Pleroma.Formatter.markdown_to_html(code)
assert result == ~s[<pre><code class="">puts &quot;Hello World&quot;</code></pre>]
end
test "lists" do
code = ~s[- one\n- two\n- three\n- four]
- result = Earmark.as_html!(code, %Earmark.Options{renderer: Pleroma.EarmarkRenderer})
+ result = Pleroma.Formatter.markdown_to_html(code)
assert result == "<ul><li>one</li><li>two</li><li>three</li><li>four</li></ul>"
code = ~s[1. one\n2. two\n3. three\n4. four\n]
- result = Earmark.as_html!(code, %Earmark.Options{renderer: Pleroma.EarmarkRenderer})
+ result = Pleroma.Formatter.markdown_to_html(code)
assert result == "<ol><li>one</li><li>two</li><li>three</li><li>four</li></ol>"
end
test "delegated renderers" do
code = ~s[a<br/>b]
- result = Earmark.as_html!(code, %Earmark.Options{renderer: Pleroma.EarmarkRenderer})
+ result = Pleroma.Formatter.markdown_to_html(code)
assert result == "<p>#{code}</p>"
code = ~s[*aaaa~*]
- result = Earmark.as_html!(code, %Earmark.Options{renderer: Pleroma.EarmarkRenderer})
+ result = Pleroma.Formatter.markdown_to_html(code)
assert result == ~s[<p><em>aaaa~</em></p>]
code = ~s[**aaaa~**]
- result = Earmark.as_html!(code, %Earmark.Options{renderer: Pleroma.EarmarkRenderer})
+ result = Pleroma.Formatter.markdown_to_html(code)
assert result == ~s[<p><strong>aaaa~</strong></p>]
# strikethrought
code = ~s[<del>aaaa~</del>]
- result = Earmark.as_html!(code, %Earmark.Options{renderer: Pleroma.EarmarkRenderer})
+ result = Pleroma.Formatter.markdown_to_html(code)
assert result == ~s[<p><del>aaaa~</del></p>]
end
end