summaryrefslogtreecommitdiff
path: root/qa/qa/specs/features/browser_ui/3_create/repository/add_ssh_key_spec.rb
diff options
context:
space:
mode:
authorMark Lapierre <mlapierre@gitlab.com>2018-09-12 12:53:24 -0400
committerMark Lapierre <mlapierre@gitlab.com>2018-09-12 12:53:24 -0400
commit26655e8c34cb8b97022fa61edc3d8cfd47dfb3bf (patch)
treeecea346a772963c88dc6ca1dd3667c042aeb93dd /qa/qa/specs/features/browser_ui/3_create/repository/add_ssh_key_spec.rb
parentdabc8211a9c65881b023d8bb69131c0d68aa50c6 (diff)
downloadgitlab-ce-ml-qa-clone-deploy-only.tar.gz
Test with only the deploy key specml-qa-clone-deploy-only
Diffstat (limited to 'qa/qa/specs/features/browser_ui/3_create/repository/add_ssh_key_spec.rb')
-rw-r--r--qa/qa/specs/features/browser_ui/3_create/repository/add_ssh_key_spec.rb31
1 files changed, 0 insertions, 31 deletions
diff --git a/qa/qa/specs/features/browser_ui/3_create/repository/add_ssh_key_spec.rb b/qa/qa/specs/features/browser_ui/3_create/repository/add_ssh_key_spec.rb
deleted file mode 100644
index 84f663c4866..00000000000
--- a/qa/qa/specs/features/browser_ui/3_create/repository/add_ssh_key_spec.rb
+++ /dev/null
@@ -1,31 +0,0 @@
-# frozen_string_literal: true
-
-module QA
- context :create do
- describe 'SSH keys support' do
- let(:key_title) { "key for ssh tests #{Time.now.to_f}" }
-
- it 'user adds and then removes an SSH key' do
- Runtime::Browser.visit(:gitlab, Page::Main::Login)
- Page::Main::Login.act { sign_in_using_credentials }
-
- key = Factory::Resource::SSHKey.fabricate! do |resource|
- resource.title = key_title
- end
-
- expect(page).to have_content("Title: #{key_title}")
- expect(page).to have_content(key.fingerprint)
-
- Page::Menu::Main.act { go_to_profile_settings }
- Page::Menu::Profile.act { click_ssh_keys }
-
- Page::Profile::SSHKeys.perform do |ssh_keys|
- ssh_keys.remove_key(key_title)
- end
-
- expect(page).not_to have_content("Title: #{key_title}")
- expect(page).not_to have_content(key.fingerprint)
- end
- end
- end
-end