summaryrefslogtreecommitdiff
path: root/spec/features/projects/developer_views_empty_project_instructions_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/features/projects/developer_views_empty_project_instructions_spec.rb')
-rw-r--r--spec/features/projects/developer_views_empty_project_instructions_spec.rb12
1 files changed, 3 insertions, 9 deletions
diff --git a/spec/features/projects/developer_views_empty_project_instructions_spec.rb b/spec/features/projects/developer_views_empty_project_instructions_spec.rb
index 2352329d58c..0c51fe72ca4 100644
--- a/spec/features/projects/developer_views_empty_project_instructions_spec.rb
+++ b/spec/features/projects/developer_views_empty_project_instructions_spec.rb
@@ -56,14 +56,8 @@ feature 'Developer views empty project instructions', feature: true do
end
def expect_instructions_for(protocol)
- url =
- case protocol
- when 'ssh'
- project.ssh_url_to_repo
- when 'http'
- project.http_url_to_repo(developer)
- end
-
- expect(page).to have_content("git clone #{url}")
+ msg = :"#{protocol.downcase}_url_to_repo"
+
+ expect(page).to have_content("git clone #{project.send(msg)}")
end
end