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 visit profile_description_path
20 within_content_body do
21 fill_in "Home Location Name", :with => "Test Place"
22 click_on "Update Profile"
25 assert_text "Profile updated."
27 within_content_body do
28 assert_text :all, "Home location Test Place"