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

dashboard.stub.rb « admin « page « gitlab « lib « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: da7175581336c51185ebe0e6b589020a0d3bd200 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# frozen_string_literal: true

module Gitlab
  module Page
    module Admin
      module Dashboard
        # @note Defined as +h2 :users_in_license+
        # @return [String] The text content or value of +users_in_license+
        def users_in_license
          # This is a stub, used for indexing. The method is dynamically generated.
        end

        # @example
        #   Gitlab::Page::Admin::Dashboard.perform do |dashboard|
        #     expect(dashboard.users_in_license_element).to exist
        #   end
        # @return [Watir::H2] The raw +H2+ element
        def users_in_license_element
          # This is a stub, used for indexing. The method is dynamically generated.
        end

        # @example
        #   Gitlab::Page::Admin::Dashboard.perform do |dashboard|
        #     expect(dashboard).to be_users_in_license
        #   end
        # @return [Boolean] true if the +users_in_license+ element is present on the page
        def users_in_license?
          # This is a stub, used for indexing. The method is dynamically generated.
        end

        # @note Defined as +h2 :billable_users+
        # @return [String] The text content or value of +billable_users+
        def billable_users
          # This is a stub, used for indexing. The method is dynamically generated.
        end

        # @example
        #   Gitlab::Page::Admin::Dashboard.perform do |dashboard|
        #     expect(dashboard.billable_users_element).to exist
        #   end
        # @return [Watir::H2] The raw +H2+ element
        def billable_users_element
          # This is a stub, used for indexing. The method is dynamically generated.
        end

        # @example
        #   Gitlab::Page::Admin::Dashboard.perform do |dashboard|
        #     expect(dashboard).to be_billable_users
        #   end
        # @return [Boolean] true if the +billable_users+ element is present on the page
        def billable_users?
          # This is a stub, used for indexing. The method is dynamically generated.
        end
      end
    end
  end
end