BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
770d2831
Commit
770d2831
authored
Jul 12, 2016
by
tiagonbotelho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes test for simplified version of project
parent
3e44aac0
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
filter_branches.rb
app/controllers/concerns/filter_branches.rb
+8
-0
projects_spec.rb
spec/requests/api/projects_spec.rb
+1
-1
No files found.
app/controllers/concerns/filter_branches.rb
0 → 100644
View file @
770d2831
module
FilterBranches
extend
ActiveSupport
::
Concern
def
filter_branches
(
branches
)
if
params
[
:search
].
present?
&&
@sort
branches
=
@repository
.
find_similar_branches
(
params
[
:search
],
@sort
)
end
end
spec/requests/api/projects_spec.rb
View file @
770d2831
...
@@ -83,7 +83,7 @@ describe API::API, api: true do
...
@@ -83,7 +83,7 @@ describe API::API, api: true do
context
'GET /projects?simple=true'
do
context
'GET /projects?simple=true'
do
it
'should return a simplified version of all the projects'
do
it
'should return a simplified version of all the projects'
do
expected_keys
=
[
"id"
,
"http_url_to_repo"
,
"web_url"
,
"name"
,
"name_with_namespace"
,
"path"
,
"path_with_namespace"
,
"permissions"
]
expected_keys
=
[
"id"
,
"http_url_to_repo"
,
"web_url"
,
"name"
,
"name_with_namespace"
,
"path"
,
"path_with_namespace"
]
get
api
(
'/projects?simple=true'
,
user
)
get
api
(
'/projects?simple=true'
,
user
)
expect
(
response
).
to
have_http_status
(
200
)
expect
(
response
).
to
have_http_status
(
200
)
...
...
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