rails--rails/actionpack/test/template/tag_helper_test.rb

25 lines
884 B
Ruby
Raw Normal View History

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_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
end