aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template/tag_helper_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/template/tag_helper_test.rb')
-rw-r--r--actionpack/test/template/tag_helper_test.rb5
1 files changed, 5 insertions, 0 deletions
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 "<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"),