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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
b729004a
Commit
b729004a
authored
May 27, 2012
by
randx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Tests] Update team member permission
parent
2a67879b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
spec/requests/team_members_spec.rb
spec/requests/team_members_spec.rb
+10
-0
No files found.
spec/requests/team_members_spec.rb
View file @
b729004a
...
...
@@ -7,6 +7,16 @@ describe "TeamMembers" do
@project
.
add_access
(
@user
,
:read
,
:admin
)
end
describe
"Update profile"
,
:js
=>
true
do
it
"should update user role"
do
@project
.
master_access_for?
(
@user
).
should
be_true
visit
team_project_path
(
@project
)
select
"Developer"
,
:from
=>
"team_member_project_access"
@project
.
master_access_for?
(
@user
).
should
be_false
@project
.
dev_access_for?
(
@user
).
should
be_true
end
end
describe
"View profile"
do
it
"should be available"
do
visit
(
team_project_path
(
@project
))
...
...
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