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
c606df8f
Commit
c606df8f
authored
Sep 13, 2013
by
Marin Jankovski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test.
parent
91e112ff
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
0 deletions
+33
-0
features/project/create_project.feature
features/project/create_project.feature
+11
-0
features/steps/project/create_project.rb
features/steps/project/create_project.rb
+22
-0
No files found.
features/project/create_project.feature
View file @
c606df8f
...
...
@@ -9,3 +9,14 @@ Feature: Create Project
And
fill project form with valid data
Then
I should see project page
And
I should see empty project instuctions
@javascript
Scenario
:
Empty project instructions
Given
I sign in as a user
When
I visit new project page
And
fill project form with valid data
Then
I see empty project instuctions
And
I click on HTTP
Then
Remote url should update to http link
And
If I click on SSH
Then
Remote url should update to ssh link
\ No newline at end of file
features/steps/project/create_project.rb
View file @
c606df8f
...
...
@@ -17,4 +17,26 @@ class CreateProject < Spinach::FeatureSteps
page
.
should
have_content
"git remote"
page
.
should
have_content
Project
.
last
.
url_to_repo
end
Then
'I see empty project instuctions'
do
page
.
should
have_content
"git init"
page
.
should
have_content
"git remote"
page
.
should
have_content
Project
.
last
.
url_to_repo
end
And
'I click on HTTP'
do
click_button
'HTTP'
end
Then
'Remote url should update to http link'
do
page
.
should
have_content
"git remote add origin
#{
Project
.
last
.
http_url_to_repo
}
"
end
And
'If I click on SSH'
do
click_button
'SSH'
end
Then
'Remote url should update to ssh link'
do
page
.
should
have_content
"git remote add origin
#{
Project
.
last
.
url_to_repo
}
"
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