Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/support/data/license.rb')
-rw-r--r--qa/qa/support/data/license.rb27
1 files changed, 27 insertions, 0 deletions
diff --git a/qa/qa/support/data/license.rb b/qa/qa/support/data/license.rb
new file mode 100644
index 00000000000..cd4745fefcd
--- /dev/null
+++ b/qa/qa/support/data/license.rb
@@ -0,0 +1,27 @@
+# frozen_string_literal: true
+
+module QA
+ module Support
+ module Data
+ module License
+ def license_user
+ 'GitLab QA'
+ end
+
+ def license_company
+ 'QA User'
+ end
+
+ def license_user_count
+ 10_000
+ end
+
+ def license_plan
+ QA::ULTIMATE_SELF_MANAGED
+ end
+ end
+ end
+ end
+end
+
+QA::Support::Data::License.prepend_mod_with('Support::Data::License', namespace: QA)