Sha256: d5ed35d7b428dd19f8e6e718bf3a70d118caed475ad1f7c12e548cf58121541b

Contents?: true

Size: 1.39 KB

Versions: 11

Compression:

Stored size: 1.39 KB

Contents

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

require File.dirname(__FILE__) + '/../../lib/action_view/helpers/tag_helper'
require File.dirname(__FILE__) + '/../../lib/action_view/helpers/url_helper'

class TagHelperTest < Test::Unit::TestCase
  include ActionView::Helpers::TagHelper
  include ActionView::Helpers::UrlHelper

  def test_tag
    assert_equal "<p class=\"show\" />", tag("p", "class" => "show")
    assert_equal tag("p", "class" => "show"), tag("p", :class => "show")
  end

  def test_tag_options
    assert_equal "<p class=\"elsewhere\" />", tag("p", "class" => "show", :class => "elsewhere")
  end

  def test_tag_options_rejects_nil_option
    assert_equal "<p />", tag("p", :ignored => nil)
  end

  def test_tag_options_accepts_blank_option
    assert_equal "<p included=\"\" />", tag("p", :included => '')
  end

  def test_tag_options_converts_boolean_option
    assert_equal '<p disabled="disabled" multiple="multiple" readonly="readonly" />',
      tag("p", :disabled => true, :multiple => true, :readonly => true)
  end

  def test_content_tag
    assert_equal "<a href=\"create\">Create</a>", content_tag("a", "Create", "href" => "create")
    assert_equal content_tag("a", "Create", "href" => "create"),
                 content_tag("a", "Create", :href => "create")
  end
  
  def test_cdata_section
    assert_equal "<![CDATA[<hello world>]]>", cdata_section("<hello world>")
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
actionpack-1.11.1 test/template/tag_helper_test.rb
actionpack-1.12.0 test/template/tag_helper_test.rb
actionpack-1.12.1 test/template/tag_helper_test.rb
actionpack-1.10.1 test/template/tag_helper_test.rb
actionpack-1.11.2 test/template/tag_helper_test.rb
actionpack-1.10.2 test/template/tag_helper_test.rb
actionpack-1.11.0 test/template/tag_helper_test.rb
actionpack-1.12.4 test/template/tag_helper_test.rb
actionpack-1.12.5 test/template/tag_helper_test.rb
actionpack-1.12.2 test/template/tag_helper_test.rb
actionpack-1.12.3 test/template/tag_helper_test.rb