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
ab057bb5
Commit
ab057bb5
authored
Sep 06, 2012
by
miks
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
proper Grape params hash simulation
parent
cd846ba2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
spec/requests/api/projects_spec.rb
spec/requests/api/projects_spec.rb
+1
-1
No files found.
spec/requests/api/projects_spec.rb
View file @
ab057bb5
...
...
@@ -68,7 +68,7 @@ describe Gitlab::API do
it
"should add users to existing project"
do
expect
{
put
api
(
"/projects/
#{
project
.
code
}
/add_users"
,
user
),
user_ids:
[
user2
.
id
,
user3
.
id
]
,
project_access:
UsersProject
::
DEVELOPER
user_ids:
{
"0"
=>
user2
.
id
,
"1"
=>
user3
.
id
}
,
project_access:
UsersProject
::
DEVELOPER
}.
to
change
{
Project
.
last
.
users_projects
.
where
(
:project_access
=>
UsersProject
::
DEVELOPER
).
count
}.
by
(
2
)
end
end
...
...
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