Sha256: df2ad524c4a5a21cbd24cd87b91bd2fb357bcac7b1e3f03e5e35af0c0ed989e3

Contents?: true

Size: 1.36 KB

Versions: 5

Compression:

Stored size: 1.36 KB

Contents

require File.dirname(__FILE__) + '/unit_test_helper'

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

5 entries across 5 versions & 1 rubygems

Version Path
auto_html-1.3.4 test/unit/auto_html_test.rb
auto_html-1.3.3 test/unit/auto_html_test.rb
auto_html-1.3.2 test/unit/auto_html_test.rb
auto_html-1.3.1 test/unit/auto_html_test.rb
auto_html-1.3.0 test/unit/auto_html_test.rb