Sha256: 6e36144b068fcd7426ae140a07c9d5dfd94ee05c89fbc8e711d4e79d17b2d354

Contents?: true

Size: 1.38 KB

Versions: 17

Compression:

Stored size: 1.38 KB

Contents

# 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&rsquo;re not for sale.</p>", markdown
  end

  def test_that_smartyhtml_converts_double_quotes
    rd = render(%("Quoted text"))
    assert_equal %(<p>&ldquo;Quoted text&rdquo;</p>), rd
  end

  def test_that_smartyhtml_converts_double_hyphen
    rd = render("double hyphen -- ndash")
    assert_equal "<p>double hyphen &ndash; ndash</p>", rd
  end

  def test_that_smartyhtml_converts_triple_hyphen
    rd = render("triple hyphen --- mdash")
    assert_equal "<p>triple hyphen &mdash; 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&#39;s a test of &quot;pre&quot;"
    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&#39;s a test of &quot;code&quot;"
    assert rd.include?(expected), "\"#{rd}\" should contain \"#{expected}\""
  end
end

Version data entries

17 entries across 13 versions & 5 rubygems

Version Path
files.com-1.0.55 docs/vendor/bundle/ruby/2.5.0/gems/redcarpet-3.4.0/test/smarty_html_test.rb
tdiary-5.0.13 vendor/bundle/gems/redcarpet-3.4.0/test/smarty_html_test.rb
tdiary-5.0.12.1 vendor/bundle/gems/redcarpet-3.4.0/test/smarty_html_test.rb
tdiary-5.0.11 vendor/bundle/gems/redcarpet-3.4.0/test/smarty_html_test.rb
tdiary-5.0.9 vendor/bundle/gems/redcarpet-3.4.0/test/smarty_html_test.rb
tdiary-5.0.8 vendor/bundle/gems/tdiary-5.0.7/vendor/bundle/gems/redcarpet-3.4.0/test/smarty_html_test.rb
tdiary-5.0.8 vendor/bundle/ruby/2.5.0/gems/redcarpet-3.4.0/test/smarty_html_test.rb
tdiary-5.0.8 vendor/bundle/gems/redcarpet-3.4.0/test/smarty_html_test.rb
tdiary-5.0.7 vendor/bundle/gems/redcarpet-3.4.0/test/smarty_html_test.rb
tdiary-5.0.6 vendor/bundle/gems/redcarpet-3.4.0/test/smarty_html_test.rb
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/redcarpet-3.4.0/test/smarty_html_test.rb
tdiary-5.0.5 vendor/bundle/gems/redcarpet-3.4.0/test/smarty_html_test.rb
etude_for_ruby-0.1.4 vendor/bundle/ruby/2.4.0/gems/redcarpet-3.4.0/test/smarty_html_test.rb
etude_for_ruby-0.1.4 vendor/bundle/ruby/2.2.0/gems/redcarpet-3.4.0/test/smarty_html_test.rb
tdiary-5.0.4 vendor/bundle/gems/redcarpet-3.4.0/test/smarty_html_test.rb
mdg-1.0.1 vendor/bundle/ruby/2.3.0/gems/redcarpet-3.4.0/test/smarty_html_test.rb
redcarpet-3.4.0 test/smarty_html_test.rb