Sha256: 1fedfc17721e6b3f5f85c3c213e41f70dfd7183eaab89c267b5f40a402abfb36
Contents?: true
Size: 1.53 KB
Versions: 7
Compression:
Stored size: 1.53 KB
Contents
# coding: UTF-8 require 'test_helper' class SmartyHTMLTest < Redcarpet::TestCase def setup @smarty_markdown = Redcarpet::Markdown.new(Redcarpet::Render::SmartyHTML) end def test_that_smartyhtml_converts_single_quotes markdown = @smarty_markdown.render("They're not for sale.") assert_equal "<p>They’re not for sale.</p>\n", markdown end def test_that_smartyhtml_converts_double_quotes rd = @smarty_markdown.render(%("Quoted text")) assert_equal %(<p>“Quoted text”</p>\n), rd end def test_that_smartyhtml_converts_double_hyphen rd = @smarty_markdown.render("double hyphen -- ndash") assert_equal "<p>double hyphen – ndash</p>\n", rd end def test_that_smartyhtml_converts_triple_hyphen rd = @smarty_markdown.render("triple hyphen --- mdash") assert_equal "<p>triple hyphen — mdash</p>\n", rd end def test_that_smartyhtml_ignores_double_hyphen_in_code rd = @smarty_markdown.render("double hyphen in `--option`") assert_equal "<p>double hyphen in <code>--option</code></p>\n", rd end def test_that_smartyhtml_ignores_pre rd = @smarty_markdown.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 = @smarty_markdown.render("`It's a test of \"code\"`\n") expected = "It's a test of "code"" assert rd.include?(expected), "\"#{rd}\" should contain \"#{expected}\"" end end
Version data entries
7 entries across 7 versions & 1 rubygems