Sha256: 7d29b9153b3f9415745df452b12a7995a3577aee4a312dfa28d198e15d3d2552

Contents?: true

Size: 1.37 KB

Versions: 2

Compression:

Stored size: 1.37 KB

Contents

require File.expand_path('../unit_test_helper', __FILE__)


class AutoHtmlTest < Test::Unit::TestCase

  def test_should_be_nil_no_filters_provided
    result = auto_html("Hey check out my blog => http://rors.org") { }
    assert_nil result
  end

  def test_should_apply_simple_format_filter
    result = auto_html("Hey check out my blog => http://rors.org") { simple_format }
    assert_equal "<p>Hey check out my blog => http://rors.org</p>", result
  end

  def test_should_apply_simple_format_and_image_filter
    result = auto_html("Check the logo: http://rors.org/images/rails.png") { simple_format; image }
    assert_equal '<p>Check the logo: <img src="http://rors.org/images/rails.png" alt=""/></p>', result
  end

  def test_should_apply_simple_format_image_and_link_filter
    result = auto_html("Check the logo: http://rors.org/images/rails.png. Visit: http://rubyonrails.org") { simple_format; image; link }
    assert_equal '<p>Check the logo: <img src="http://rors.org/images/rails.png" alt=""/>. Visit: <a href="http://rubyonrails.org">http://rubyonrails.org</a></p>', result
  end
  
  def test_should_return_blank_if_input_is_blank
    result = auto_html("") { simple_format; image; link }
    assert_equal "", result
  end
  
  def test_should_not_apply_simple_format_if_input_is_nil
    result = auto_html(nil) { simple_format; image; link }
    assert_equal "", result
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
marcosinger-auto_html-1.3.5 test/unit/auto_html_test.rb
marcosinger-auto_html-1.3.4 test/unit/auto_html_test.rb