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
Tatuya Kamada
gitlab-ce
Commits
e956066d
Commit
e956066d
authored
Jan 27, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add tests for initializing bare repo and creating new file in it
parent
2fa36ddd
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
0 deletions
+28
-0
features/project/source/browse_files.feature
features/project/source/browse_files.feature
+13
-0
features/steps/project/source/browse_files.rb
features/steps/project/source/browse_files.rb
+11
-0
features/steps/shared/project.rb
features/steps/shared/project.rb
+4
-0
No files found.
features/project/source/browse_files.feature
View file @
e956066d
...
...
@@ -34,6 +34,19 @@ Feature: Project Source Browse Files
Then
I am redirected to the new file
And
I should see its new content
@javascript
Scenario
:
I
can create file in empty repo
Given
I own an empty project
And
I visit my empty project page
And
I create bare repo
When
I click on
"add a file"
link
And
I edit code
And
I fill the new file name
And
I fill the commit message
And
I click on
"Commit Changes"
Then
I am redirected to the new file
And
I should see its new content
@javascript
Scenario
:
If I enter an illegal file name I see an error message
Given
I click on
"new file"
link in repo
...
...
features/steps/project/source/browse_files.rb
View file @
e956066d
...
...
@@ -166,6 +166,17 @@ class Spinach::Features::ProjectSourceBrowseFiles < Spinach::FeatureSteps
expect
(
page
).
to
have_content
(
'Your changes could not be committed'
)
end
step
'I create bare repo'
do
click_link
'Create empty bare repository'
end
step
'I click on "add a file" link'
do
click_link
'add a file'
# Remove pre-receive hook so we can push without auth
FileUtils
.
rm
(
File
.
join
(
Project
.
last
.
repository
.
path
,
'hooks'
,
'pre-receive'
))
end
private
def
set_new_content
...
...
features/steps/shared/project.rb
View file @
e956066d
...
...
@@ -28,6 +28,10 @@ module SharedProject
@project
.
team
<<
[
@user
,
:master
]
end
step
'I visit my empty project page'
do
visit
project_path
(
Project
.
find_by
(
name:
'Empty Project'
))
end
step
'project "Shop" has push event'
do
@project
=
Project
.
find_by
(
name:
"Shop"
)
...
...
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