X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/11cc4a5e601dd288d601e6e35a72d159062f18b5..87bb2a717d59b58054cf743b7aadc116f788da69:/test/system/issues_test.rb diff --git a/test/system/issues_test.rb b/test/system/issues_test.rb index 08b1acb34..55e8b1b26 100644 --- a/test/system/issues_test.rb +++ b/test/system/issues_test.rb @@ -5,7 +5,7 @@ class IssuesTest < ApplicationSystemTestCase def test_view_issues_not_logged_in visit issues_path - assert page.has_content?(I18n.t("users.login.title")) + assert page.has_content?(I18n.t("sessions.new.title")) end def test_view_issues_normal_user @@ -58,7 +58,7 @@ class IssuesTest < ApplicationSystemTestCase # User doesn't exist visit issues_path - fill_in "search_by_user", :with => "Nonexistant User" + fill_in "search_by_user", :with => "Nonexistent User" click_on "Search" assert page.has_content?(I18n.t("issues.index.user_not_found")) assert page.has_content?(I18n.t("issues.index.issues_not_found")) @@ -72,7 +72,7 @@ class IssuesTest < ApplicationSystemTestCase end def test_commenting - issue = create(:issue) + issue = create(:issue, :assigned_role => "moderator") sign_in_as(create(:moderator_user)) visit issue_path(issue) @@ -83,7 +83,7 @@ class IssuesTest < ApplicationSystemTestCase assert page.has_content?("test comment") issue.reload - assert_equal issue.comments.first.body, "test comment" + assert_equal("test comment", issue.comments.first.body) end def test_reassign_issue