X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/46c183ffeb68a45e6e0793c813f2756109f40642..100babbe6cd463198f03f6b409cca2f5de45b4ea:/test/system/issues_test.rb diff --git a/test/system/issues_test.rb b/test/system/issues_test.rb index 200029176..9aee867a9 100644 --- a/test/system/issues_test.rb +++ b/test/system/issues_test.rb @@ -19,7 +19,7 @@ class IssuesTest < ApplicationSystemTestCase sign_in_as(create(:moderator_user)) visit issues_path - assert page.has_content?(I18n.t(".issues.index.issues_not_found")) + assert page.has_content?(I18n.t("issues.index.issues_not_found")) end def test_view_issues @@ -33,7 +33,7 @@ class IssuesTest < ApplicationSystemTestCase def test_view_issues_with_no_reported_user sign_in_as(create(:moderator_user)) anonymous_note = create(:note_with_comments) - issue = create(:issue, :reportable => anonymous_note) + issue = create(:issue, :reportable => anonymous_note, :assigned_role => "moderator") visit issues_path assert page.has_content?(reportable_title(anonymous_note)) @@ -53,19 +53,22 @@ class IssuesTest < ApplicationSystemTestCase visit issues_path fill_in "search_by_user", :with => good_user.display_name click_on "Search" - assert page.has_content?(I18n.t(".issues.index.issues_not_found")) + assert_not page.has_content?(I18n.t("issues.index.user_not_found")) + assert page.has_content?(I18n.t("issues.index.issues_not_found")) # User doesn't exist visit issues_path fill_in "search_by_user", :with => "Nonexistant User" click_on "Search" - assert page.has_content?(I18n.t(".issues.index.user_not_found")) + assert page.has_content?(I18n.t("issues.index.user_not_found")) + assert page.has_content?(I18n.t("issues.index.issues_not_found")) # Find Issue against bad_user visit issues_path fill_in "search_by_user", :with => bad_user.display_name click_on "Search" - assert !page.has_content?(I18n.t(".issues.index.issues_not_found")) + assert_not page.has_content?(I18n.t("issues.index.user_not_found")) + assert_not page.has_content?(I18n.t("issues.index.issues_not_found")) end def test_commenting @@ -76,7 +79,7 @@ class IssuesTest < ApplicationSystemTestCase fill_in :issue_comment_body, :with => "test comment" click_on "Submit" - assert page.has_content?(I18n.t(".issues.comment.comment_created")) + assert page.has_content?(I18n.t("issue_comments.create.comment_created")) assert page.has_content?("test comment") issue.reload @@ -110,7 +113,7 @@ class IssuesTest < ApplicationSystemTestCase visit issues_path - assert page.has_link?(I18n.t(".issues.index.reports_count", :count => issue1.reports_count), :href => issue_path(issue1)) - assert page.has_link?(I18n.t(".issues.index.reports_count", :count => issue2.reports_count), :href => issue_path(issue2)) + assert page.has_link?(I18n.t("issues.index.reports_count", :count => issue1.reports_count), :href => issue_path(issue1)) + assert page.has_link?(I18n.t("issues.index.reports_count", :count => issue2.reports_count), :href => issue_path(issue2)) end end