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

license.rb « data « support « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cd4745fefcd6ee10c108b3dbdf50e42f415913df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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)