aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/template
diff options
context:
space:
mode:
authorDamien Mathieu <42@dmathieu.com>2012-01-06 17:14:49 +0100
committerDamien Mathieu <42@dmathieu.com>2012-01-06 18:08:29 +0100
commit69a6381048b2bbf97ee651afebf43d9095ec9075 (patch)
tree92962d0f8943602277d8e1f5d3aadfba337737d4 /actionpack/test/template
parentaec817269f7df9641753c631d104d8b1dbdc610c (diff)
downloadrails-69a6381048b2bbf97ee651afebf43d9095ec9075.tar.gz
rails-69a6381048b2bbf97ee651afebf43d9095ec9075.tar.bz2
rails-69a6381048b2bbf97ee651afebf43d9095ec9075.zip
don't set the hidden checkbox value if it's nil
Diffstat (limited to 'actionpack/test/template')
-rw-r--r--actionpack/test/template/form_helper_test.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/actionpack/test/template/form_helper_test.rb b/actionpack/test/template/form_helper_test.rb
index 942be67d02..ad0cc41d69 100644
--- a/actionpack/test/template/form_helper_test.rb
+++ b/actionpack/test/template/form_helper_test.rb
@@ -374,6 +374,14 @@ class FormHelperTest < ActionView::TestCase
)
end
+ def test_check_box_with_nil_unchecked_value
+ @post.secret = "on"
+ assert_dom_equal(
+ '<input checked="checked" id="post_secret" name="post[secret]" type="checkbox" value="on" />',
+ check_box("post", "secret", {}, "on", nil)
+ )
+ end
+
def test_check_box_with_multiple_behavior
@post.comment_ids = [2,3]
assert_dom_equal(