1 require "application_system_test_case"
3 class UserLocationChangeTest < ApplicationSystemTestCase
5 stub_request(:get, /.*gravatar.com.*d=404/).to_return(:status => 404)
8 test "User can change their location" do
14 within_content_heading do
15 assert_no_selector ".bi.bi-geo-alt-fill"
18 visit edit_profile_path
20 fill_in "Home location name", :with => "Test Location"
21 click_on "Update Profile"
23 assert_text "Profile updated"
24 within_content_heading do
25 assert_text "Test Location"