X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/17323257685bf5134d9286f5baefaddcae65478c..2b7a48029bff06c190544f91c5969b09aeae552b:/test/system/dashboard_test.rb diff --git a/test/system/dashboard_test.rb b/test/system/dashboard_test.rb index bc2e3b4e9..ef1b952dc 100644 --- a/test/system/dashboard_test.rb +++ b/test/system/dashboard_test.rb @@ -1,12 +1,12 @@ require "application_system_test_case" class DashboardSystemTest < ApplicationSystemTestCase - test "show no users if have no friends" do + test "show no users if have no followings" do user = create(:user) sign_in_as(user) visit dashboard_path - assert_text "You have not added any friends yet." + assert_text "You have not followed any user yet." end test "show users if have friends" do @@ -17,9 +17,9 @@ class DashboardSystemTest < ApplicationSystemTestCase sign_in_as(user) visit dashboard_path - assert_no_text "You have not added any friends yet." + assert_no_text "You have not followed any user yet." - friends_heading = find :element, "h2", :text => "My friends" + friends_heading = find :element, "h2", :text => "Followings" others_heading = find :element, "h2", :text => "Other nearby users" assert_link friend_user.display_name, :below => friends_heading, :above => others_heading