1 require "application_system_test_case"
3 class UserCompanyTest < ApplicationSystemTestCase
4 test "User can change company" do
10 within_content_heading do
11 assert_no_text "Company"
16 within_content_body do
17 fill_in "Company", :with => "Test Co."
18 click_on "Update Profile"
21 assert_text "Profile updated."
23 within_content_heading do
24 assert_text "Company Test Co."