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_body do
15 assert_no_text :all, "Home location"
18 within_content_body do
19 click_on "Edit Profile"
21 within_content_heading do
25 within_content_body do
26 fill_in "Home Location Name", :with => "Test Place"
27 click_on "Update Profile"
30 assert_text "Profile location updated."
32 within_content_body do
33 assert_text :all, "Home location Test Place"