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
b8b8a34b
Commit
b8b8a34b
authored
Dec 23, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix 500 error when rename repository
Signed-off-by:
Dmitriy Zaporozhets
<
dmitriy.zaporozhets@gmail.com
>
parent
25d793ea
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
4 deletions
+18
-4
app/contexts/projects/update_context.rb
app/contexts/projects/update_context.rb
+1
-1
features/project/project.feature
features/project/project.feature
+5
-0
features/steps/project/project.rb
features/steps/project/project.rb
+12
-3
No files found.
app/contexts/projects/update_context.rb
View file @
b8b8a34b
...
...
@@ -9,7 +9,7 @@ module Projects
new_branch
=
params
[
:project
].
delete
(
:default_branch
)
if
project
.
repository
.
exists?
&&
new_branch
!=
project
.
default_branch
if
project
.
repository
.
exists?
&&
new_branch
&&
new_branch
!=
project
.
default_branch
project
.
change_head
(
new_branch
)
end
...
...
features/project/project.feature
View file @
b8b8a34b
...
...
@@ -19,3 +19,8 @@ Feature: Project Feature
And
change project settings
And
I save project
Then
I should see project with new settings
Scenario
:
I
change project path
When
I visit edit project
"Shop"
page
And
change project path settings
Then
I should see project with new path settings
features/steps/project/project.rb
View file @
b8b8a34b
...
...
@@ -3,16 +3,25 @@ class ProjectFeature < Spinach::FeatureSteps
include
SharedProject
include
SharedPaths
And
'change project settings'
do
step
'change project settings'
do
fill_in
'project_name'
,
with:
'NewName'
uncheck
'project_issues_enabled'
end
And
'I save project'
do
step
'I save project'
do
click_button
'Save changes'
end
Then
'I should see project with new settings'
do
step
'I should see project with new settings'
do
find_field
(
'project_name'
).
value
.
should
==
'NewName'
end
step
'change project path settings'
do
fill_in
"project_path"
,
with:
"new-path"
click_button
"Rename"
end
step
'I should see project with new path settings'
do
project
.
path
.
should
==
"new-path"
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