1 require "application_system_test_case"
3 class UserCompanyTest < ApplicationSystemTestCase
4 test "User can change company" do
10 within_content_body do
11 assert_no_text :all, "Company"
14 visit profile_company_path
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_body do
24 assert_text :all, "Company Test Co."