summaryrefslogtreecommitdiff
path: root/qa/qa/page/shared/clone_panel.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/page/shared/clone_panel.rb')
-rw-r--r--qa/qa/page/shared/clone_panel.rb50
1 files changed, 0 insertions, 50 deletions
diff --git a/qa/qa/page/shared/clone_panel.rb b/qa/qa/page/shared/clone_panel.rb
deleted file mode 100644
index 73e3dff956d..00000000000
--- a/qa/qa/page/shared/clone_panel.rb
+++ /dev/null
@@ -1,50 +0,0 @@
-module QA
- module Page
- module Shared
- module ClonePanel
- def self.included(base)
- base.view 'app/views/shared/_clone_panel.html.haml' do
- element :clone_dropdown
- element :clone_options_dropdown, '.clone-options-dropdown'
- element :project_repository_location, 'text_field_tag :project_clone'
- end
- end
-
- def choose_repository_clone_http
- choose_repository_clone('HTTP', 'http')
- end
-
- def choose_repository_clone_ssh
- # It's not always beginning with ssh:// so detecting with @
- # would be more reliable because ssh would always contain it.
- # We can't use .git because HTTP also contain that part.
- choose_repository_clone('SSH', '@')
- end
-
- def repository_location
- Git::Location.new(find('#project_clone').value)
- end
-
- def wait_for_push
- sleep 5
- refresh
- end
-
- private
-
- def choose_repository_clone(kind, detect_text)
- wait(reload: false) do
- click_element :clone_dropdown
-
- page.within('.clone-options-dropdown') do
- click_link(kind)
- end
-
- # Ensure git clone textbox was updated
- repository_location.git_uri.include?(detect_text)
- end
- end
- end
- end
- end
-end