From 064842f516513eab305cb8a3257e32164cda68cb Mon Sep 17 00:00:00 2001 From: Marcel Molina Date: Mon, 10 Oct 2005 21:34:51 +0000 Subject: Convert boolean form options form the tag_helper. Recloses #809. git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2523 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/test/template/tag_helper_test.rb | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'actionpack/test') diff --git a/actionpack/test/template/tag_helper_test.rb b/actionpack/test/template/tag_helper_test.rb index 0c6783c158..5c413e8c89 100644 --- a/actionpack/test/template/tag_helper_test.rb +++ b/actionpack/test/template/tag_helper_test.rb @@ -24,6 +24,11 @@ class TagHelperTest < Test::Unit::TestCase assert_equal "

", tag("p", :included => '') end + def test_tag_options_converts_boolean_option + assert_equal '

', + tag("p", :disabled => true, :multiple => true, :readonly => true) + end + def test_content_tag assert_equal "Create", content_tag("a", "Create", "href" => "create") assert_equal content_tag("a", "Create", "href" => "create"), -- cgit v1.2.3