Skip to content

Commit

Permalink
"generates" applies to "collection radio" so it should be singular
Browse files Browse the repository at this point in the history
  • Loading branch information
waynn committed Sep 12, 2013
1 parent d262773 commit faeb33d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions actionview/test/template/form_collections_helper_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ def with_collection_check_boxes(*args, &block)
end

# COLLECTION RADIO BUTTONS
test 'collection radio accepts a collection and generate inputs from value method' do
test 'collection radio accepts a collection and generates inputs from value method' do
with_collection_radio_buttons :user, :active, [true, false], :to_s, :to_s

assert_select 'input[type=radio][value=true]#user_active_true'
assert_select 'input[type=radio][value=false]#user_active_false'
end

test 'collection radio accepts a collection and generate inputs from label method' do
test 'collection radio accepts a collection and generates inputs from label method' do
with_collection_radio_buttons :user, :active, [true, false], :to_s, :to_s

assert_select 'label[for=user_active_true]', 'true'
Expand Down

0 comments on commit faeb33d

Please sign in to comment.