aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorTadas Tamošauskas <tadastoo@yahoo.com>2012-01-05 22:35:10 +0000
committerTadas Tamošauskas <tadastoo@yahoo.com>2012-01-05 22:52:13 +0000
commit9bd38f31be61af6b3b97613100d7b89e653f73a2 (patch)
treeef9dd14096eeac8d0fc4aab2395e062d3600298d /actionpack/test
parentbe52f1bf2a5e250f0e2182f2b756ac68c81718f3 (diff)
downloadrails-9bd38f31be61af6b3b97613100d7b89e653f73a2.tar.gz
rails-9bd38f31be61af6b3b97613100d7b89e653f73a2.tar.bz2
rails-9bd38f31be61af6b3b97613100d7b89e653f73a2.zip
check_box helper with :disabled => true generates disabled hidden field. fixes #1953
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/template/form_helper_test.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/actionpack/test/template/form_helper_test.rb b/actionpack/test/template/form_helper_test.rb
index 6fe4ce65cf..9a13d4e399 100644
--- a/actionpack/test/template/form_helper_test.rb
+++ b/actionpack/test/template/form_helper_test.rb
@@ -386,11 +386,10 @@ class FormHelperTest < ActionView::TestCase
)
end
-
- def test_checkbox_disabled_still_submits_checked_value
+ def test_checkbox_disabled_disables_hidden_field
assert_dom_equal(
- '<input name="post[secret]" type="hidden" value="1" /><input checked="checked" disabled="disabled" id="post_secret" name="post[secret]" type="checkbox" value="1" />',
- check_box("post", "secret", { :disabled => :true })
+ '<input name="post[secret]" type="hidden" value="0" disabled="disabled"/><input checked="checked" disabled="disabled" id="post_secret" name="post[secret]" type="checkbox" value="1" />',
+ check_box("post", "secret", { :disabled => true })
)
end