Skip to content
Snippets Groups Projects
Commit 7039fb66 authored by Marin Jankovski's avatar Marin Jankovski Committed by Wes Gurney
Browse files

Test.

parent b3b7a4f1
No related branches found
No related tags found
1 merge request!4954Add support to configure webhook_timeout in gitlab.yaml
Loading
Loading
@@ -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
Loading
Loading
@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment