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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
3940ac85
Commit
3940ac85
authored
Sep 20, 2017
by
Valery Sizov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Pulling merge_method spec for project_controller_spec from EE[ci skip]
parent
172bae0c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
spec/controllers/projects_controller_spec.rb
spec/controllers/projects_controller_spec.rb
+18
-0
No files found.
spec/controllers/projects_controller_spec.rb
View file @
3940ac85
...
...
@@ -289,6 +289,24 @@ describe ProjectsController do
end
end
it
'updates Fast Forward Merge attributes'
do
controller
.
instance_variable_set
(
:@project
,
project
)
params
=
{
merge_method: :ff
}
put
:update
,
namespace_id:
project
.
namespace
,
id:
project
.
id
,
project:
params
expect
(
response
).
to
have_http_status
(
302
)
params
.
each
do
|
param
,
value
|
expect
(
project
.
public_send
(
param
)).
to
eq
(
value
)
end
end
def
update_project
(
**
parameters
)
put
:update
,
namespace_id:
project
.
namespace
.
path
,
...
...
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