diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-12-22 09:35:35 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-12-22 09:35:35 +0000 |
commit | 3976d5e7408d39d326c0f3ee240225577f4a28ef (patch) | |
tree | 26fe9b9889a471a6deb70c92ddef5ddbdea51605 /test/functional/calendars_controller_test.rb | |
parent | eecabc5bb0e61277aef011ea7126eeaaefc00bf5 (diff) | |
download | redmine-3976d5e7408d39d326c0f3ee240225577f4a28ef.tar.gz redmine-3976d5e7408d39d326c0f3ee240225577f4a28ef.zip |
Use #assert_select instead of #assert_tag.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11066 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional/calendars_controller_test.rb')
-rw-r--r-- | test/functional/calendars_controller_test.rb | 50 |
1 files changed, 20 insertions, 30 deletions
diff --git a/test/functional/calendars_controller_test.rb b/test/functional/calendars_controller_test.rb index a8ab5750f..0e759a0c0 100644 --- a/test/functional/calendars_controller_test.rb +++ b/test/functional/calendars_controller_test.rb @@ -56,42 +56,32 @@ class CalendarsControllerTest < ActionController::TestCase get :show, :month => '1', :year => '2010' assert_response :success - assert_tag :tag => 'tr', - :descendant => {:tag => 'td', - :attributes => {:class => 'week-number'}, :content => '53'}, - :descendant => {:tag => 'td', - :attributes => {:class => 'odd'}, :content => '27'}, - :descendant => {:tag => 'td', - :attributes => {:class => 'even'}, :content => '2'} - - assert_tag :tag => 'tr', - :descendant => {:tag => 'td', - :attributes => {:class => 'week-number'}, :content => '1'}, - :descendant => {:tag => 'td', - :attributes => {:class => 'odd'}, :content => '3'}, - :descendant => {:tag => 'td', - :attributes => {:class => 'even'}, :content => '9'} + assert_select 'tr' do + assert_select 'td.week-number', :text => '53' + assert_select 'td.odd', :text => '27' + assert_select 'td.even', :text => '2' + end + assert_select 'tr' do + assert_select 'td.week-number', :text => '1' + assert_select 'td.odd', :text => '3' + assert_select 'td.even', :text => '9' + end Setting.start_of_week = 1 get :show, :month => '1', :year => '2010' assert_response :success - assert_tag :tag => 'tr', - :descendant => {:tag => 'td', - :attributes => {:class => 'week-number'}, :content => '53'}, - :descendant => {:tag => 'td', - :attributes => {:class => 'even'}, :content => '28'}, - :descendant => {:tag => 'td', - :attributes => {:class => 'even'}, :content => '3'} - - assert_tag :tag => 'tr', - :descendant => {:tag => 'td', - :attributes => {:class => 'week-number'}, :content => '1'}, - :descendant => {:tag => 'td', - :attributes => {:class => 'even'}, :content => '4'}, - :descendant => {:tag => 'td', - :attributes => {:class => 'even'}, :content => '10'} + assert_select 'tr' do + assert_select 'td.week-number', :text => '53' + assert_select 'td.even', :text => '28' + assert_select 'td.even', :text => '3' + end + assert_select 'tr' do + assert_select 'td.week-number', :text => '1' + assert_select 'td.even', :text => '4' + assert_select 'td.even', :text => '10' + end end end |