summaryrefslogtreecommitdiff
path: root/qa/qa/page/project/operations/environments/show.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/page/project/operations/environments/show.rb')
-rw-r--r--qa/qa/page/project/operations/environments/show.rb23
1 files changed, 0 insertions, 23 deletions
diff --git a/qa/qa/page/project/operations/environments/show.rb b/qa/qa/page/project/operations/environments/show.rb
deleted file mode 100644
index aa88c218c89..00000000000
--- a/qa/qa/page/project/operations/environments/show.rb
+++ /dev/null
@@ -1,23 +0,0 @@
-# frozen_string_literal: true
-
-module QA
- module Page
- module Project
- module Operations
- module Environments
- class Show < Page::Base
- view 'app/views/projects/environments/_external_url.html.haml' do
- element :view_deployment
- end
-
- def view_deployment(&block)
- new_window = window_opened_by { click_element(:view_deployment) }
-
- within_window(new_window, &block) if block
- end
- end
- end
- end
- end
- end
-end