diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-01-17 17:02:55 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-01-17 17:02:55 +0000 |
commit | d85f73a30d48b3472346fb712106e6d5f4403278 (patch) | |
tree | 35d9205b3bf1da3c4e1cc9fc7699f798395d4702 /test/functional | |
parent | 3ea8b706978b490fc54cde8e14dcde2a748dec1a (diff) | |
download | redmine-d85f73a30d48b3472346fb712106e6d5f4403278.tar.gz redmine-d85f73a30d48b3472346fb712106e6d5f4403278.zip |
Upgrade to Rails 4.2.0 (#14534).
git-svn-id: http://svn.redmine.org/redmine/trunk@13892 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional')
18 files changed, 68 insertions, 70 deletions
diff --git a/test/functional/activities_controller_test.rb b/test/functional/activities_controller_test.rb index 78a0cc029..6a1d2a7db 100644 --- a/test/functional/activities_controller_test.rb +++ b/test/functional/activities_controller_test.rb @@ -118,8 +118,8 @@ class ActivitiesControllerTest < ActionController::TestCase assert_template 'common/feed' assert_select 'feed' do - assert_select 'link[rel=self][href=?]', 'http://test.host/activity.atom?show_changesets=1&show_documents=1&show_files=1&show_issues=1&show_messages=1&show_news=1&show_time_entries=1&show_wiki_edits=1&with_subprojects=0' - assert_select 'link[rel=alternate][href=?]', 'http://test.host/activity?show_changesets=1&show_documents=1&show_files=1&show_issues=1&show_messages=1&show_news=1&show_time_entries=1&show_wiki_edits=1&with_subprojects=0' + assert_select 'link[rel=self][href=?]', 'http://test.host/activity.atom?show_changesets=1&show_documents=1&show_files=1&show_issues=1&show_messages=1&show_news=1&show_time_entries=1&show_wiki_edits=1&with_subprojects=0' + assert_select 'link[rel=alternate][href=?]', 'http://test.host/activity?show_changesets=1&show_documents=1&show_files=1&show_issues=1&show_messages=1&show_news=1&show_time_entries=1&show_wiki_edits=1&with_subprojects=0' assert_select 'entry' do assert_select 'link[href=?]', 'http://test.host/issues/11' end diff --git a/test/functional/auth_sources_controller_test.rb b/test/functional/auth_sources_controller_test.rb index 1a396ba1c..7e15ee8a3 100644 --- a/test/functional/auth_sources_controller_test.rb +++ b/test/functional/auth_sources_controller_test.rb @@ -94,7 +94,7 @@ class AuthSourcesControllerTest < ActionController::TestCase get :edit, :id => 1 assert_response :success assert_select 'input[value=secret]', 0 - assert_select 'input[name=dummy_password][value=?]', /x+/ + assert_select 'input[name=dummy_password][value^=xxxxxx]' end def test_edit_invalid_should_respond_with_404 diff --git a/test/functional/boards_controller_test.rb b/test/functional/boards_controller_test.rb index 9563b26d5..c585760af 100644 --- a/test/functional/boards_controller_test.rb +++ b/test/functional/boards_controller_test.rb @@ -117,9 +117,13 @@ class BoardsControllerTest < ActionController::TestCase assert_select 'select[name=?]', 'board[parent_id]' do assert_select 'option', (Project.find(1).boards.size + 1) - assert_select 'option[value=""]', :text => ' ' + assert_select 'option[value=""]' assert_select 'option[value="1"]', :text => 'Help' end + + # replaced by nokogiri, not easy to test in DOM assertions + assert_not_include '<option value=""></option>', response.body + assert_include '<option value=""> </option>', response.body end def test_new_without_project_boards diff --git a/test/functional/context_menus_controller_test.rb b/test/functional/context_menus_controller_test.rb index fadc7a1c8..0ecbf63da 100644 --- a/test/functional/context_menus_controller_test.rb +++ b/test/functional/context_menus_controller_test.rb @@ -44,15 +44,15 @@ class ContextMenusControllerTest < ActionController::TestCase assert_select 'a.icon-del[href=?]', '/issues?ids%5B%5D=1', :text => 'Delete' # Statuses - assert_select 'a[href=?]', '/issues/bulk_update?ids%5B%5D=1&issue%5Bstatus_id%5D=5', :text => 'Closed' - assert_select 'a[href=?]', '/issues/bulk_update?ids%5B%5D=1&issue%5Bpriority_id%5D=8', :text => 'Immediate' + assert_select 'a[href=?]', '/issues/bulk_update?ids%5B%5D=1&issue%5Bstatus_id%5D=5', :text => 'Closed' + assert_select 'a[href=?]', '/issues/bulk_update?ids%5B%5D=1&issue%5Bpriority_id%5D=8', :text => 'Immediate' # No inactive priorities assert_select 'a', :text => /Inactive Priority/, :count => 0 # Versions - assert_select 'a[href=?]', '/issues/bulk_update?ids%5B%5D=1&issue%5Bfixed_version_id%5D=3', :text => '2.0' - assert_select 'a[href=?]', '/issues/bulk_update?ids%5B%5D=1&issue%5Bfixed_version_id%5D=4', :text => 'eCookbook Subproject 1 - 2.0' + assert_select 'a[href=?]', '/issues/bulk_update?ids%5B%5D=1&issue%5Bfixed_version_id%5D=3', :text => '2.0' + assert_select 'a[href=?]', '/issues/bulk_update?ids%5B%5D=1&issue%5Bfixed_version_id%5D=4', :text => 'eCookbook Subproject 1 - 2.0' # Assignees - assert_select 'a[href=?]', '/issues/bulk_update?ids%5B%5D=1&issue%5Bassigned_to_id%5D=3', :text => 'Dave Lopper' + assert_select 'a[href=?]', '/issues/bulk_update?ids%5B%5D=1&issue%5Bassigned_to_id%5D=3', :text => 'Dave Lopper' end def test_context_menu_one_issue_by_anonymous @@ -72,15 +72,15 @@ class ContextMenusControllerTest < ActionController::TestCase assert_not_nil assigns(:issues) assert_equal [1, 2], assigns(:issues).map(&:id).sort - ids = assigns(:issues).map(&:id).sort.map {|i| "ids%5B%5D=#{i}"}.join('&') + ids = assigns(:issues).map(&:id).sort.map {|i| "ids%5B%5D=#{i}"}.join('&') assert_select 'a.icon-edit[href=?]', "/issues/bulk_edit?#{ids}", :text => 'Edit' - assert_select 'a.icon-copy[href=?]', "/issues/bulk_edit?copy=1&#{ids}", :text => 'Copy' + assert_select 'a.icon-copy[href=?]', "/issues/bulk_edit?copy=1&#{ids}", :text => 'Copy' assert_select 'a.icon-del[href=?]', "/issues?#{ids}", :text => 'Delete' - assert_select 'a[href=?]', "/issues/bulk_update?#{ids}&issue%5Bstatus_id%5D=5", :text => 'Closed' - assert_select 'a[href=?]', "/issues/bulk_update?#{ids}&issue%5Bpriority_id%5D=8", :text => 'Immediate' - assert_select 'a[href=?]', "/issues/bulk_update?#{ids}&issue%5Bassigned_to_id%5D=3", :text => 'Dave Lopper' + assert_select 'a[href=?]', "/issues/bulk_update?#{ids}&issue%5Bstatus_id%5D=5", :text => 'Closed' + assert_select 'a[href=?]', "/issues/bulk_update?#{ids}&issue%5Bpriority_id%5D=8", :text => 'Immediate' + assert_select 'a[href=?]', "/issues/bulk_update?#{ids}&issue%5Bassigned_to_id%5D=3", :text => 'Dave Lopper' end def test_context_menu_multiple_issues_of_different_projects @@ -91,14 +91,14 @@ class ContextMenusControllerTest < ActionController::TestCase assert_not_nil assigns(:issues) assert_equal [1, 2, 6], assigns(:issues).map(&:id).sort - ids = assigns(:issues).map(&:id).sort.map {|i| "ids%5B%5D=#{i}"}.join('&') + ids = assigns(:issues).map(&:id).sort.map {|i| "ids%5B%5D=#{i}"}.join('&') assert_select 'a.icon-edit[href=?]', "/issues/bulk_edit?#{ids}", :text => 'Edit' assert_select 'a.icon-del[href=?]', "/issues?#{ids}", :text => 'Delete' - assert_select 'a[href=?]', "/issues/bulk_update?#{ids}&issue%5Bstatus_id%5D=5", :text => 'Closed' - assert_select 'a[href=?]', "/issues/bulk_update?#{ids}&issue%5Bpriority_id%5D=8", :text => 'Immediate' - assert_select 'a[href=?]', "/issues/bulk_update?#{ids}&issue%5Bassigned_to_id%5D=2", :text => 'John Smith' + assert_select 'a[href=?]', "/issues/bulk_update?#{ids}&issue%5Bstatus_id%5D=5", :text => 'Closed' + assert_select 'a[href=?]', "/issues/bulk_update?#{ids}&issue%5Bpriority_id%5D=8", :text => 'Immediate' + assert_select 'a[href=?]', "/issues/bulk_update?#{ids}&issue%5Bassigned_to_id%5D=2", :text => 'John Smith' end def test_context_menu_should_include_list_custom_fields @@ -108,11 +108,11 @@ class ContextMenusControllerTest < ActionController::TestCase get :issues, :ids => [1] assert_select "li.cf_#{field.id}" do - assert_select 'a[href=#]', :text => 'List' + assert_select 'a[href="#"]', :text => 'List' assert_select 'ul' do assert_select 'a', 3 - assert_select 'a[href=?]', "/issues/bulk_update?ids%5B%5D=1&issue%5Bcustom_field_values%5D%5B#{field.id}%5D=Foo", :text => 'Foo' - assert_select 'a[href=?]', "/issues/bulk_update?ids%5B%5D=1&issue%5Bcustom_field_values%5D%5B#{field.id}%5D=__none__", :text => 'none' + assert_select 'a[href=?]', "/issues/bulk_update?ids%5B%5D=1&issue%5Bcustom_field_values%5D%5B#{field.id}%5D=Foo", :text => 'Foo' + assert_select 'a[href=?]', "/issues/bulk_update?ids%5B%5D=1&issue%5Bcustom_field_values%5D%5B#{field.id}%5D=__none__", :text => 'none' end end end @@ -124,7 +124,7 @@ class ContextMenusControllerTest < ActionController::TestCase get :issues, :ids => [1, 2] assert_select "li.cf_#{field.id}" do - assert_select 'a[href=#]', :text => 'List' + assert_select 'a[href="#"]', :text => 'List' assert_select 'ul' do assert_select 'a', 2 assert_select 'a', :text => 'none', :count => 0 @@ -142,7 +142,7 @@ class ContextMenusControllerTest < ActionController::TestCase get :issues, :ids => [1] assert_select "li.cf_#{field.id}" do - assert_select 'a[href=#]', :text => 'List' + assert_select 'a[href="#"]', :text => 'List' assert_select 'ul' do assert_select 'a', 3 assert_select 'a.icon-checked', :text => 'Bar' @@ -157,12 +157,12 @@ class ContextMenusControllerTest < ActionController::TestCase get :issues, :ids => [1] assert_select "li.cf_#{field.id}" do - assert_select 'a[href=#]', :text => 'Bool' + assert_select 'a[href="#"]', :text => 'Bool' assert_select 'ul' do assert_select 'a', 3 - assert_select 'a[href=?]', "/issues/bulk_update?ids%5B%5D=1&issue%5Bcustom_field_values%5D%5B#{field.id}%5D=0", :text => 'No' - assert_select 'a[href=?]', "/issues/bulk_update?ids%5B%5D=1&issue%5Bcustom_field_values%5D%5B#{field.id}%5D=1", :text => 'Yes' - assert_select 'a[href=?]', "/issues/bulk_update?ids%5B%5D=1&issue%5Bcustom_field_values%5D%5B#{field.id}%5D=__none__", :text => 'none' + assert_select 'a[href=?]', "/issues/bulk_update?ids%5B%5D=1&issue%5Bcustom_field_values%5D%5B#{field.id}%5D=0", :text => 'No' + assert_select 'a[href=?]', "/issues/bulk_update?ids%5B%5D=1&issue%5Bcustom_field_values%5D%5B#{field.id}%5D=1", :text => 'Yes' + assert_select 'a[href=?]', "/issues/bulk_update?ids%5B%5D=1&issue%5Bcustom_field_values%5D%5B#{field.id}%5D=__none__", :text => 'none' end end end @@ -174,11 +174,11 @@ class ContextMenusControllerTest < ActionController::TestCase get :issues, :ids => [1] assert_select "li.cf_#{field.id}" do - assert_select 'a[href=#]', :text => 'User' + assert_select 'a[href="#"]', :text => 'User' assert_select 'ul' do assert_select 'a', Project.find(1).members.count + 1 - assert_select 'a[href=?]', "/issues/bulk_update?ids%5B%5D=1&issue%5Bcustom_field_values%5D%5B#{field.id}%5D=2", :text => 'John Smith' - assert_select 'a[href=?]', "/issues/bulk_update?ids%5B%5D=1&issue%5Bcustom_field_values%5D%5B#{field.id}%5D=__none__", :text => 'none' + assert_select 'a[href=?]', "/issues/bulk_update?ids%5B%5D=1&issue%5Bcustom_field_values%5D%5B#{field.id}%5D=2", :text => 'John Smith' + assert_select 'a[href=?]', "/issues/bulk_update?ids%5B%5D=1&issue%5Bcustom_field_values%5D%5B#{field.id}%5D=__none__", :text => 'none' end end end @@ -189,11 +189,11 @@ class ContextMenusControllerTest < ActionController::TestCase get :issues, :ids => [1] assert_select "li.cf_#{field.id}" do - assert_select 'a[href=#]', :text => 'Version' + assert_select 'a[href="#"]', :text => 'Version' assert_select 'ul' do assert_select 'a', Project.find(1).shared_versions.count + 1 - assert_select 'a[href=?]', "/issues/bulk_update?ids%5B%5D=1&issue%5Bcustom_field_values%5D%5B#{field.id}%5D=3", :text => '2.0' - assert_select 'a[href=?]', "/issues/bulk_update?ids%5B%5D=1&issue%5Bcustom_field_values%5D%5B#{field.id}%5D=__none__", :text => 'none' + assert_select 'a[href=?]', "/issues/bulk_update?ids%5B%5D=1&issue%5Bcustom_field_values%5D%5B#{field.id}%5D=3", :text => '2.0' + assert_select 'a[href=?]', "/issues/bulk_update?ids%5B%5D=1&issue%5Bcustom_field_values%5D%5B#{field.id}%5D=__none__", :text => 'none' end end end @@ -216,7 +216,7 @@ class ContextMenusControllerTest < ActionController::TestCase assert_response :success assert_template 'context_menus/issues' - assert_select 'a[href=?]', '/issues/bulk_update?ids%5B%5D=1&issue%5Bassigned_to_id%5D=2', :text => / me / + assert_select 'a[href=?]', '/issues/bulk_update?ids%5B%5D=1&issue%5Bassigned_to_id%5D=2', :text => / me / end def test_context_menu_should_propose_shared_versions_for_issues_from_different_projects @@ -266,12 +266,12 @@ class ContextMenusControllerTest < ActionController::TestCase get :time_entries, :ids => [1, 2] assert_response :success assert_select "li.cf_#{field.id}" do - assert_select 'a[href=#]', :text => "Field" + assert_select 'a[href="#"]', :text => "Field" assert_select 'ul' do assert_select 'a', 3 - assert_select 'a[href=?]', "/time_entries/bulk_update?ids%5B%5D=1&ids%5B%5D=2&time_entry%5Bcustom_field_values%5D%5B#{field.id}%5D=foo", :text => 'foo' - assert_select 'a[href=?]', "/time_entries/bulk_update?ids%5B%5D=1&ids%5B%5D=2&time_entry%5Bcustom_field_values%5D%5B#{field.id}%5D=bar", :text => 'bar' - assert_select 'a[href=?]', "/time_entries/bulk_update?ids%5B%5D=1&ids%5B%5D=2&time_entry%5Bcustom_field_values%5D%5B#{field.id}%5D=__none__", :text => 'none' + assert_select 'a[href=?]', "/time_entries/bulk_update?ids%5B%5D=1&ids%5B%5D=2&time_entry%5Bcustom_field_values%5D%5B#{field.id}%5D=foo", :text => 'foo' + assert_select 'a[href=?]', "/time_entries/bulk_update?ids%5B%5D=1&ids%5B%5D=2&time_entry%5Bcustom_field_values%5D%5B#{field.id}%5D=bar", :text => 'bar' + assert_select 'a[href=?]', "/time_entries/bulk_update?ids%5B%5D=1&ids%5B%5D=2&time_entry%5Bcustom_field_values%5D%5B#{field.id}%5D=__none__", :text => 'none' end end end diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb index 86c5cdb16..ac1cb2ffa 100644 --- a/test/functional/issues_controller_test.rb +++ b/test/functional/issues_controller_test.rb @@ -371,7 +371,7 @@ class IssuesControllerTest < ActionController::TestCase assert_select 'a.atom[href="/issues.atom"]' assert_select 'a.csv[href="/issues.csv"]' assert_select 'a.pdf[href="/issues.pdf"]' - assert_select 'form#csv-export-form[action=/issues.csv]' + assert_select 'form#csv-export-form[action="/issues.csv"]' end def test_index_should_not_warn_when_not_exceeding_export_limit @@ -861,7 +861,7 @@ class IssuesControllerTest < ActionController::TestCase get :index, :set_filter => 1, :c => %w(subject description) assert_select 'table.issues thead th', 3 # columns: chekbox + id + subject - assert_select 'td.description[colspan=3]', :text => 'Unable to print recipes' + assert_select 'td.description[colspan="3"]', :text => 'Unable to print recipes' get :index, :set_filter => 1, :c => %w(subject description), :format => 'pdf' assert_response :success @@ -1012,7 +1012,7 @@ class IssuesControllerTest < ActionController::TestCase @request.session[:user_id] = 2 get :show, :id => 1 - assert_select 'form#issue-form[method=post][enctype=multipart/form-data]' do + assert_select 'form#issue-form[method=post][enctype="multipart/form-data"]' do assert_select 'input[type=file][name=?]', 'attachments[dummy][file]' end end @@ -1622,7 +1622,7 @@ class IssuesControllerTest < ActionController::TestCase @request.session[:user_id] = 2 get :new, :project_id => 1, :tracker_id => 1 - assert_select 'form[id=issue-form][method=post][enctype=multipart/form-data]' do + assert_select 'form[id=issue-form][method=post][enctype="multipart/form-data"]' do assert_select 'input[name=?][type=file]', 'attachments[dummy][file]' end end @@ -2429,7 +2429,7 @@ class IssuesControllerTest < ActionController::TestCase assert_equal orig.subject, assigns(:issue).subject assert assigns(:issue).copy? - assert_select 'form[id=issue-form][action=/projects/ecookbook/issues]' do + assert_select 'form[id=issue-form][action="/projects/ecookbook/issues"]' do assert_select 'select[name=?]', 'issue[project_id]' do assert_select 'option[value="1"][selected=selected]', :text => 'eCookbook' assert_select 'option[value="2"]:not([selected])', :text => 'OnlineStore' @@ -2629,7 +2629,7 @@ class IssuesControllerTest < ActionController::TestCase assert_not_nil assigns(:issue) assert assigns(:issue).copy? - assert_select 'form#issue-form[action=/projects/ecookbook/issues]' do + assert_select 'form#issue-form[action="/projects/ecookbook/issues"]' do assert_select 'select[name=?]', 'issue[project_id]' do assert_select 'option[value="1"]:not([selected])', :text => 'eCookbook' assert_select 'option[value="2"][selected=selected]', :text => 'OnlineStore' @@ -2701,7 +2701,7 @@ class IssuesControllerTest < ActionController::TestCase assert_select 'option[value="7"][selected=selected]', :text => 'Urgent' end - assert_select 'input[name=?][value=2.5]', 'time_entry[hours]' + assert_select 'input[name=?][value="2.5"]', 'time_entry[hours]' assert_select 'select[name=?]', 'time_entry[activity_id]' do assert_select 'option[value="10"][selected=selected]', :text => 'Development' end diff --git a/test/functional/issues_controller_transaction_test.rb b/test/functional/issues_controller_transaction_test.rb index adbe17873..b38b09641 100644 --- a/test/functional/issues_controller_transaction_test.rb +++ b/test/functional/issues_controller_transaction_test.rb @@ -245,7 +245,7 @@ class IssuesControllerTransactionTest < ActionController::TestCase assert_select 'input[name=?][value=?]', 'time_entry[hours]', '2.5' assert_select 'input[name=?][value=?]', 'time_entry[comments]', 'should not be added' assert_select 'select[name=?]', 'time_entry[activity_id]' do - assert_select 'option[value=?][selected=selected]', TimeEntryActivity.first.id + assert_select 'option[value=?][selected=selected]', TimeEntryActivity.first.id.to_s end end diff --git a/test/functional/issues_custom_fields_visibility_test.rb b/test/functional/issues_custom_fields_visibility_test.rb index 6e9ec5f11..e23cd4fc2 100644 --- a/test/functional/issues_custom_fields_visibility_test.rb +++ b/test/functional/issues_custom_fields_visibility_test.rb @@ -83,9 +83,9 @@ class IssuesCustomFieldsVisibilityTest < ActionController::TestCase end @fields.each_with_index do |field, i| if fields.include?(field) - assert_select "custom_field[id=#{field.id}] value", {:text => "Value#{i}", :count => 1}, "User #{user.id} was not able to view #{field.name} in API" + assert_select "custom_field[id=?] value", field.id.to_s, {:text => "Value#{i}", :count => 1}, "User #{user.id} was not able to view #{field.name} in API" else - assert_select "custom_field[id=#{field.id}] value", {:text => "Value#{i}", :count => 0}, "User #{user.id} was not able to view #{field.name} in API" + assert_select "custom_field[id=?] value", field.id.to_s, {:text => "Value#{i}", :count => 0}, "User #{user.id} was not able to view #{field.name} in API" end end end diff --git a/test/functional/my_controller_test.rb b/test/functional/my_controller_test.rb index 5f14c5791..65190e611 100644 --- a/test/functional/my_controller_test.rb +++ b/test/functional/my_controller_test.rb @@ -126,7 +126,7 @@ class MyControllerTest < ActionController::TestCase get :destroy assert_response :success assert_template 'destroy' - assert_select 'form[action=/my/account/destroy]' do + assert_select 'form[action="/my/account/destroy"]' do assert_select 'input[name=confirm]' end end diff --git a/test/functional/repositories_bazaar_controller_test.rb b/test/functional/repositories_bazaar_controller_test.rb index cde2d1cf7..29b5bf77d 100644 --- a/test/functional/repositories_bazaar_controller_test.rb +++ b/test/functional/repositories_bazaar_controller_test.rb @@ -123,7 +123,7 @@ class RepositoriesBazaarControllerTest < ActionController::TestCase assert_response :success assert_template 'diff' # Line 11 removed - assert_select 'th.line-num:content(11) ~ td.diff_out', :text => /Display more information/ + assert_select 'th.line-num:contains(11) ~ td.diff_out', :text => /Display more information/ end end @@ -157,7 +157,7 @@ class RepositoriesBazaarControllerTest < ActionController::TestCase assert_select "th.line-num", :text => '1' do assert_select "+ td.revision" do assert_select "a", :text => '2' - assert_select "+ td.author", :text => "test &" do + assert_select "+ td.author", :text => "test &" do assert_select "+ td", :text => "author escaping test" end diff --git a/test/functional/repositories_controller_test.rb b/test/functional/repositories_controller_test.rb index 14f6a6355..3e0fa5963 100644 --- a/test/functional/repositories_controller_test.rb +++ b/test/functional/repositories_controller_test.rb @@ -275,14 +275,8 @@ class RepositoriesControllerTest < ActionController::TestCase assert_response :success assert_template 'committers' - assert_select 'td:content(dlopper) + td select' do - assert_select 'option[value="3"][selected=selected]', :text => 'Dave Lopper' - end - - assert_select 'td:content(foo) + td select' do - assert_select 'option[value=""]' - assert_select 'option[selected=selected]', 0 # no option selected - end + assert_select 'input[value=dlopper] + select option[value="3"][selected=selected]', :text => 'Dave Lopper' + assert_select 'input[value=foo] + select option[selected=selected]', 0 # no option selected end def test_post_committers diff --git a/test/functional/repositories_darcs_controller_test.rb b/test/functional/repositories_darcs_controller_test.rb index 9df8b2a24..7ff63a54b 100644 --- a/test/functional/repositories_darcs_controller_test.rb +++ b/test/functional/repositories_darcs_controller_test.rb @@ -116,7 +116,7 @@ class RepositoriesDarcsControllerTest < ActionController::TestCase assert_response :success assert_template 'diff' # Line 22 removed - assert_select 'th.line-num:content(22) ~ td.diff_out', :text => /def remove/ + assert_select 'th.line-num:contains(22) ~ td.diff_out', :text => /def remove/ end end diff --git a/test/functional/repositories_git_controller_test.rb b/test/functional/repositories_git_controller_test.rb index c6d7ada9b..0c55b571d 100644 --- a/test/functional/repositories_git_controller_test.rb +++ b/test/functional/repositories_git_controller_test.rb @@ -265,7 +265,7 @@ class RepositoriesGitControllerTest < ActionController::TestCase assert_response :success assert_template 'diff' # Line 22 removed - assert_select 'th.line-num:content(22) ~ td.diff_out', :text => /def remove/ + assert_select 'th.line-num:contains(22) ~ td.diff_out', :text => /def remove/ assert_select 'h2', :text => /2f9c0091/ end end @@ -286,7 +286,7 @@ class RepositoriesGitControllerTest < ActionController::TestCase assert_response :success assert_template 'diff' # Line 22 removed - assert_select 'th.line-num:content(22) ~ td.diff_out', :text => /def remove/ + assert_select 'th.line-num:contains(22) ~ td.diff_out', :text => /def remove/ assert_select 'h2', :text => /2f9c0091/ end end diff --git a/test/functional/repositories_mercurial_controller_test.rb b/test/functional/repositories_mercurial_controller_test.rb index 734fe0e23..eb6440938 100644 --- a/test/functional/repositories_mercurial_controller_test.rb +++ b/test/functional/repositories_mercurial_controller_test.rb @@ -293,7 +293,7 @@ class RepositoriesMercurialControllerTest < ActionController::TestCase assert_template 'diff' if @diff_c_support # Line 22 removed - assert_select 'th.line-num:content(22) ~ td.diff_out', :text => /def remove/ + assert_select 'th.line-num:contains(22) ~ td.diff_out', :text => /def remove/ assert_select 'h2', :text => /4:def6d2f1254a/ end end diff --git a/test/functional/search_controller_test.rb b/test/functional/search_controller_test.rb index 9372e40d2..10f6b02ae 100644 --- a/test/functional/search_controller_test.rb +++ b/test/functional/search_controller_test.rb @@ -315,8 +315,8 @@ class SearchControllerTest < ActionController::TestCase get :index, :q => 'escaped_once' assert_response :success assert_select '#search-results' do - assert_select 'dt.issue a', :text => /<subject>/ - assert_select 'dd', :text => /<description>/ + assert_select 'dt.issue a', :text => /<subject>/ + assert_select 'dd', :text => /<description>/ end end diff --git a/test/functional/settings_controller_test.rb b/test/functional/settings_controller_test.rb index 1df23ef54..de5fddd8a 100644 --- a/test/functional/settings_controller_test.rb +++ b/test/functional/settings_controller_test.rb @@ -139,9 +139,9 @@ class SettingsControllerTest < ActionController::TestCase def test_get_plugin_settings ActionController::Base.append_view_path(File.join(Rails.root, "test/fixtures/plugins")) Redmine::Plugin.register :foo do - settings :partial => "foo_plugin/foo_plugin_settings", - :default => {'sample_setting' => 'Plugin setting value'} + settings :partial => "foo_plugin/foo_plugin_settings" end + Setting.plugin_foo = {'sample_setting' => 'Plugin setting value'} get :plugin, :id => 'foo' assert_response :success diff --git a/test/functional/timelog_controller_test.rb b/test/functional/timelog_controller_test.rb index 003257d30..5f73e5874 100644 --- a/test/functional/timelog_controller_test.rb +++ b/test/functional/timelog_controller_test.rb @@ -667,7 +667,7 @@ class TimelogControllerTest < ActionController::TestCase assert_select 'form[action=?][method=get]', '/projects/ecookbook/time_entries.csv' do # filter assert_select 'input[name=?][value=?]', 'f[]', 'spent_on' - assert_select 'input[name=?][value=?]', 'op[spent_on]', '>=' + assert_select 'input[name=?][value=?]', 'op[spent_on]', '>=' assert_select 'input[name=?][value=?]', 'v[spent_on][]', '2007-04-01' # columns assert_select 'input[name=?][value=?]', 'c[]', 'spent_on' diff --git a/test/functional/welcome_controller_test.rb b/test/functional/welcome_controller_test.rb index c8502425f..a264201b6 100644 --- a/test/functional/welcome_controller_test.rb +++ b/test/functional/welcome_controller_test.rb @@ -127,7 +127,7 @@ class WelcomeControllerTest < ActionController::TestCase get :index assert_select "#header select" do - assert_select "option", :text => 'Foo & Bar' + assert_select "option", :text => 'Foo & Bar' end end diff --git a/test/functional/workflows_controller_test.rb b/test/functional/workflows_controller_test.rb index 26d5f7734..85e0a1cf5 100644 --- a/test/functional/workflows_controller_test.rb +++ b/test/functional/workflows_controller_test.rb @@ -31,7 +31,7 @@ class WorkflowsControllerTest < ActionController::TestCase assert_template 'index' count = WorkflowTransition.where(:role_id => 1, :tracker_id => 2).count - assert_select 'a[href=?]', '/workflows/edit?role_id=1&tracker_id=2', :content => count.to_s + assert_select 'a[href=?]', '/workflows/edit?role_id=1&tracker_id=2', :content => count.to_s end def test_get_edit |