-
Notifications
You must be signed in to change notification settings - Fork 525
/
Copy pathsmarty_html_test.rb
51 lines (42 loc) · 1.57 KB
/
smarty_html_test.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# coding: UTF-8
require 'test_helper'
class SmartyHTMLTest < Redcarpet::TestCase
def setup
@renderer = Redcarpet::Render::SmartyHTML
end
def test_that_smartyhtml_converts_single_quotes
markdown = render("They're not for sale.")
assert_equal "<p>They’re not for sale.</p>", markdown
end
def test_that_smartyhtml_converts_double_quotes
rd = render(%("Quoted text"))
assert_equal %(<p>“Quoted text”</p>), rd
end
def test_that_smartyhtml_converts_double_hyphen
rd = render("double hyphen -- ndash")
assert_equal "<p>double hyphen – ndash</p>", rd
end
def test_that_smartyhtml_converts_triple_hyphen
rd = render("triple hyphen --- mdash")
assert_equal "<p>triple hyphen — mdash</p>", rd
end
def test_that_smartyhtml_ignores_double_hyphen_in_code
rd = render("double hyphen in `--option`")
assert_equal "<p>double hyphen in <code>--option</code></p>", rd
end
def test_that_smartyhtml_ignores_pre
rd = render(" It's a test of \"pre\"\n")
expected = "It's a test of "pre""
assert rd.include?(expected), "\"#{rd}\" should contain \"#{expected}\""
end
def test_that_smartyhtml_ignores_code
rd = render("`It's a test of \"code\"`\n")
expected = "It's a test of "code""
assert rd.include?(expected), "\"#{rd}\" should contain \"#{expected}\""
end
def test_that_smartyhtml_ignores_links_for_single_quotes
output = render("[John](link)'s cat")
expected = %(<p><a href="link">John</a>’s cat</p>)
assert_equal expected, output
end
end