Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
f339af85
Commit
f339af85
authored
Feb 11, 2013
by
Marin Jankovski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test the delete acount option.
parent
1b4ba3eb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
0 deletions
+48
-0
spec/requests/profile_spec.rb
spec/requests/profile_spec.rb
+48
-0
No files found.
spec/requests/profile_spec.rb
0 → 100644
View file @
f339af85
require
'spec_helper'
describe
"Profile account page"
do
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
it
{
page
.
should
have_content
(
"Remove account"
)
}
it
"should delete the account"
,
js:
true
do
expect
{
click_link
"Delete account"
}.
to
change
{
User
.
count
}.
by
(
-
1
)
current_path
.
should
==
new_user_session_path
end
end
describe
"when signup is enabled and user has a project"
do
before
do
Gitlab
.
config
.
gitlab
.
stub
(
:signup_enabled
).
and_return
(
true
)
@project
=
create
(
:project
,
namespace:
@user
.
namespace
)
@project
.
team
<<
[
@user
,
:master
]
visit
account_profile_path
end
it
{
page
.
should
have_content
(
"Remove account"
)
}
it
"should not allow user to delete the account"
do
expect
{
click_link
"Delete account"
}.
not_to
change
{
User
.
count
}.
by
(
-
1
)
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
end
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment