Sha256: 94c0e540e3641774a977209109f166d0e6f5ef948182b17f00ac2e9e581705dd

Contents?: true

Size: 1.1 KB

Versions: 5

Compression:

Stored size: 1.1 KB

Contents

require "test_helper"

AutolinkFilter = HTML::Pipeline::AutolinkFilter

class HTML::Pipeline::AutolinkFilterTest < Test::Unit::TestCase
  def test_uses_rinku_for_autolinking
    # just try to parse a complicated piece of HTML
    # that Rails auto_link cannot handle
    assert_equal '<p>"<a href="http://www.github.com">http://www.github.com</a>"</p>',
      AutolinkFilter.to_html('<p>"http://www.github.com"</p>')
  end

  def test_autolink_option
    assert_equal '<p>"http://www.github.com"</p>',
      AutolinkFilter.to_html('<p>"http://www.github.com"</p>', :autolink => false)
  end

  def test_autolink_flags
    assert_equal '<p>"<a href="http://github">http://github</a>"</p>',
      AutolinkFilter.to_html('<p>"http://github"</p>', :flags => Rinku::AUTOLINK_SHORT_DOMAINS)
  end

  def test_autolink_skip_tags
    assert_equal '<code>"http://github.com"</code>',
      AutolinkFilter.to_html('<code>"http://github.com"</code>')

    assert_equal '<code>"<a href="http://github.com">http://github.com</a>"</code>',
      AutolinkFilter.to_html('<code>"http://github.com"</code>', :skip_tags => %w(kbd script))
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
html-pipeline-0.3.1 test/html/pipeline/autolink_filter_test.rb
html-pipeline-0.3.0 test/html/pipeline/autolink_filter_test.rb
html-pipeline-0.2.1 test/html/pipeline/autolink_filter_test.rb
html-pipeline-0.2.0 test/html/pipeline/autolink_filter_test.rb
html-pipeline-0.1.0 test/html/pipeline/autolink_filter_test.rb