diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-02-01 20:12:52 -0200 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2012-02-02 14:52:59 -0200 |
commit | 5d8191a263c7439219b56ed5396ceebed981af2d (patch) | |
tree | 12f88c549b8a24e74435cf853d19f0b6e2ef2990 /actionpack/test | |
parent | 0f234261552dae68b66d3d0271ef39c343082c36 (diff) | |
download | rails-5d8191a263c7439219b56ed5396ceebed981af2d.tar.gz rails-5d8191a263c7439219b56ed5396ceebed981af2d.tar.bz2 rails-5d8191a263c7439219b56ed5396ceebed981af2d.zip |
Remove default class to collection_check_boxes and
collection_radio_buttons
[Carlos Antonio da Silva + Rafael Mendonça França]
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/template/form_collections_helper_test.rb | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/actionpack/test/template/form_collections_helper_test.rb b/actionpack/test/template/form_collections_helper_test.rb index 41b6702c9d..a4aea8ca56 100644 --- a/actionpack/test/template/form_collections_helper_test.rb +++ b/actionpack/test/template/form_collections_helper_test.rb @@ -27,21 +27,21 @@ class FormCollectionsHelperTest < ActionView::TestCase test 'collection radio accepts a collection and generate inputs from label method' do with_collection_radio_buttons :user, :active, [true, false], :to_s, :to_s - assert_select 'label.collection_radio_buttons[for=user_active_true]', 'true' - assert_select 'label.collection_radio_buttons[for=user_active_false]', 'false' + assert_select 'label[for=user_active_true]', 'true' + assert_select 'label[for=user_active_false]', 'false' end test 'collection radio handles camelized collection values for labels correctly' do with_collection_radio_buttons :user, :active, ['Yes', 'No'], :to_s, :to_s - assert_select 'label.collection_radio_buttons[for=user_active_yes]', 'Yes' - assert_select 'label.collection_radio_buttons[for=user_active_no]', 'No' + assert_select 'label[for=user_active_yes]', 'Yes' + assert_select 'label[for=user_active_no]', 'No' end test 'colection radio should sanitize collection values for labels correctly' do with_collection_radio_buttons :user, :name, ['$0.99', '$1.99'], :to_s, :to_s - assert_select 'label.collection_radio_buttons[for=user_name_099]', '$0.99' - assert_select 'label.collection_radio_buttons[for=user_name_199]', '$1.99' + assert_select 'label[for=user_name_099]', '$0.99' + assert_select 'label[for=user_name_199]', '$1.99' end test 'collection radio accepts checked item' do @@ -132,8 +132,8 @@ class FormCollectionsHelperTest < ActionView::TestCase assert_select 'input#post_category_id_1[type=radio][value=1]' assert_select 'input#post_category_id_2[type=radio][value=2]' - assert_select 'label.collection_radio_buttons[for=post_category_id_1]', 'Category 1' - assert_select 'label.collection_radio_buttons[for=post_category_id_2]', 'Category 2' + assert_select 'label[for=post_category_id_1]', 'Category 1' + assert_select 'label[for=post_category_id_2]', 'Category 2' end # COLLECTION CHECK BOXES @@ -156,21 +156,21 @@ class FormCollectionsHelperTest < ActionView::TestCase collection = [Category.new(1, 'Category 1'), Category.new(2, 'Category 2')] with_collection_check_boxes :user, :category_ids, collection, :id, :name - assert_select 'label.collection_check_boxes[for=user_category_ids_1]', 'Category 1' - assert_select 'label.collection_check_boxes[for=user_category_ids_2]', 'Category 2' + assert_select 'label[for=user_category_ids_1]', 'Category 1' + assert_select 'label[for=user_category_ids_2]', 'Category 2' end test 'collection check boxes handles camelized collection values for labels correctly' do with_collection_check_boxes :user, :active, ['Yes', 'No'], :to_s, :to_s - assert_select 'label.collection_check_boxes[for=user_active_yes]', 'Yes' - assert_select 'label.collection_check_boxes[for=user_active_no]', 'No' + assert_select 'label[for=user_active_yes]', 'Yes' + assert_select 'label[for=user_active_no]', 'No' end test 'colection check box should sanitize collection values for labels correctly' do with_collection_check_boxes :user, :name, ['$0.99', '$1.99'], :to_s, :to_s - assert_select 'label.collection_check_boxes[for=user_name_099]', '$0.99' - assert_select 'label.collection_check_boxes[for=user_name_199]', '$1.99' + assert_select 'label[for=user_name_099]', '$0.99' + assert_select 'label[for=user_name_199]', '$1.99' end test 'collection check boxes accepts selected values as :checked option' do @@ -248,8 +248,8 @@ class FormCollectionsHelperTest < ActionView::TestCase assert_select 'input#post_category_ids_1[type=checkbox][value=1]' assert_select 'input#post_category_ids_2[type=checkbox][value=2]' - assert_select 'label.collection_check_boxes[for=post_category_ids_1]', 'Category 1' - assert_select 'label.collection_check_boxes[for=post_category_ids_2]', 'Category 2' + assert_select 'label[for=post_category_ids_1]', 'Category 1' + assert_select 'label[for=post_category_ids_2]', 'Category 2' end test 'collection check boxes does not wrap input inside the label' do |