2013-02-11 07:06:37 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe "Profile account page" do
|
2013-04-10 16:28:42 -04:00
|
|
|
before(:each) { enable_observers }
|
2013-04-25 10:15:33 -04:00
|
|
|
after(:each) {disable_observers}
|
2013-02-11 07:06:37 -05:00
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
login_as :user
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "when signup is enabled" do
|
|
|
|
before do
|
|
|
|
Gitlab.config.gitlab.stub(:signup_enabled).and_return(true)
|
|
|
|
visit account_profile_path
|
|
|
|
end
|
2013-04-01 11:35:29 -04:00
|
|
|
|
2013-02-11 07:06:37 -05:00
|
|
|
it { page.should have_content("Remove account") }
|
2013-04-01 11:35:29 -04:00
|
|
|
|
2013-09-04 09:20:40 -04:00
|
|
|
it "should delete the account" do
|
2013-02-11 07:06:37 -05:00
|
|
|
expect { click_link "Delete account" }.to change {User.count}.by(-1)
|
|
|
|
current_path.should == new_user_session_path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "when signup is disabled" do
|
|
|
|
before do
|
|
|
|
Gitlab.config.gitlab.stub(:signup_enabled).and_return(false)
|
|
|
|
visit account_profile_path
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should not have option to remove account" do
|
|
|
|
page.should_not have_content("Remove account")
|
|
|
|
current_path.should == account_profile_path
|
|
|
|
end
|
|
|
|
end
|
2013-04-01 11:35:29 -04:00
|
|
|
end
|