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 04:36:29 +0300
committerJacob Schatz <jacobschatz@Jacobs-MBP.fios-router.home>2015-12-24 04:36:29 +0300
commit6592bfbb9ed37c348f257106c1da35692ef6a111 (patch)
treec888fd5d59de170cd6b02ee1a196df8b94d22ba8 /features
parent7ba4482fcf6faae162ceb920044f4ec07ef048af (diff)
Moves star code to a class
Diffstat (limited to 'features')
-rw-r--r--features/steps/project/create.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/features/steps/project/create.rb b/features/steps/project/create.rb
index 0c247c83133..8a0e8fc2b6c 100644
--- a/features/steps/project/create.rb
+++ b/features/steps/project/create.rb
@@ -31,7 +31,7 @@ class Spinach::Features::ProjectCreate < Spinach::FeatureSteps
end
step 'Remote url should update to http link' do
- expect(page).to have_content Project.last.http_url_to_repo
+ expect(page).to have_content "git remote add origin #{Project.last.http_url_to_repo}"
end
step 'If I click on SSH' do
@@ -40,6 +40,6 @@ class Spinach::Features::ProjectCreate < Spinach::FeatureSteps
end
step 'Remote url should update to ssh link' do
- expect(page).to have_content Project.last.ssh_url_to_repo
+ expect(page).to have_content "git remote add origin #{Project.last.url_to_repo}"
end
end