From ebf66379186db094ba94914c2aed4e6a485d4708 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 20 Mar 2005 14:49:37 +0000 Subject: Added that the html options disabled, readonly, and multiple can all be treated as booleans. So specifying disabled => :true will give disabled="disabled". #809 [mindel] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@932 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/test/template/form_tag_helper_test.rb | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'actionpack/test') diff --git a/actionpack/test/template/form_tag_helper_test.rb b/actionpack/test/template/form_tag_helper_test.rb index ab597d61a0..7a666271c1 100644 --- a/actionpack/test/template/form_tag_helper_test.rb +++ b/actionpack/test/template/form_tag_helper_test.rb @@ -81,5 +81,11 @@ class FormTagHelperTest < Test::Unit::TestCase assert_equal expected, actual end + def test_boolean_optios + assert_equal %(), check_box_tag("admin", 1, true, 'disabled' => true, :readonly => "yes") + assert_equal %(), check_box_tag("admin", 1, true, :disabled => false, :readonly => nil) + assert_equal %(), select_tag("people", "", :multiple => true) + assert_equal %(), select_tag("people", "", :multiple => nil) + end end -- cgit v1.2.3