summaryrefslogtreecommitdiff
path: root/qa/qa/page/admin/license.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/page/admin/license.rb')
-rw-r--r--qa/qa/page/admin/license.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/qa/qa/page/admin/license.rb b/qa/qa/page/admin/license.rb
deleted file mode 100644
index 4bdfae30b37..00000000000
--- a/qa/qa/page/admin/license.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-module QA
- module Page
- module Admin
- class License < Page::Base
- def no_license?
- page.has_content?('No GitLab Enterprise Edition ' \
- 'license has been provided yet')
- end
-
- def add_new_license(key)
- raise 'License key empty!' if key.to_s.empty?
-
- choose 'Enter license key'
- fill_in 'License key', with: key
- click_button 'Upload license'
- end
- end
- end
- end
-end