Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Schatz <jacobschatz@Jacobs-MBP.fios-router.home>2015-12-24 03:57:30 +0300
committerJacob Schatz <jacobschatz@Jacobs-MBP.fios-router.home>2015-12-24 03:57:30 +0300
commit7ba4482fcf6faae162ceb920044f4ec07ef048af (patch)
tree8aacd9f6989cd5840c22d7e5394c339a84397d3e /features/steps
parent77daadc92c8574c048511c4f8363d51ea78b1b9e (diff)
fixes failing test by updating project clone instructions
Diffstat (limited to 'features/steps')
-rw-r--r--features/steps/project/create.rb10
1 files changed, 6 insertions, 4 deletions
diff --git a/features/steps/project/create.rb b/features/steps/project/create.rb
index f90218f3791..0c247c83133 100644
--- a/features/steps/project/create.rb
+++ b/features/steps/project/create.rb
@@ -26,18 +26,20 @@ class Spinach::Features::ProjectCreate < Spinach::FeatureSteps
end
step 'I click on HTTP' do
- click_button 'HTTP'
+ find('#clone-dropdown').click
+ find('#http-selector').click
end
step 'Remote url should update to http link' do
- expect(page).to have_content "git remote add origin #{Project.last.http_url_to_repo}"
+ expect(page).to have_content Project.last.http_url_to_repo
end
step 'If I click on SSH' do
- click_button 'SSH'
+ find('#clone-dropdown').click
+ find('#ssh-selector').click
end
step 'Remote url should update to ssh link' do
- expect(page).to have_content "git remote add origin #{Project.last.url_to_repo}"
+ expect(page).to have_content Project.last.ssh_url_to_repo
end
end