aboutsummaryrefslogtreecommitdiffstats
path: root/actionview
diff options
context:
space:
mode:
authorWaynn Lue <WLGades@gmail.com>2013-12-11 14:30:41 -0800
committerWaynn Lue <WLGades@gmail.com>2013-12-11 14:30:41 -0800
commitb6251d626edbd1ddb6bc5b5cf51b4ff4a3ce23f2 (patch)
tree3a4f17c23785d860634035ec75b92adec2b54f17 /actionview
parent6deb0a09c1e9b2d7c1d603978d26fd13aec50c83 (diff)
downloadrails-b6251d626edbd1ddb6bc5b5cf51b4ff4a3ce23f2.tar.gz
rails-b6251d626edbd1ddb6bc5b5cf51b4ff4a3ce23f2.tar.bz2
rails-b6251d626edbd1ddb6bc5b5cf51b4ff4a3ce23f2.zip
value is "disabled" not "disable"
Diffstat (limited to 'actionview')
-rw-r--r--actionview/test/template/form_collections_helper_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/test/template/form_collections_helper_test.rb b/actionview/test/template/form_collections_helper_test.rb
index 68c83f2059..4c17899c46 100644
--- a/actionview/test/template/form_collections_helper_test.rb
+++ b/actionview/test/template/form_collections_helper_test.rb
@@ -60,7 +60,7 @@ class FormCollectionsHelperTest < ActionView::TestCase
assert_no_select 'input[type=radio][value=other][disabled=disabled]'
end
- test 'collection radio accepts single disable item' do
+ test 'collection radio accepts single disabled item' do
collection = [[1, true], [0, false]]
with_collection_radio_buttons :user, :active, collection, :last, :first, :disabled => true