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
13 assert_no_selector ".bi.bi-geo-alt-fill"
15 visit edit_profile_path
16 fill_in "Home location name", :with => "Test Location"
17 click_on "Update Profile"
20 assert_text "Test Location"