summaryrefslogtreecommitdiff
path: root/qa/lib/gitlab/page/admin/dashboard.stub.rb
blob: 820acf79b9b7674a846cf6eac55d7b4d11e63b62 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# 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

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

        # @example
        #   Gitlab::Page::Admin::Dashboard.perform do |dashboard|
        #     expect(dashboard.number_of_users_element).to exist
        #   end
        # @return [Watir::H3] The raw +H3+ element
        def number_of_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_number_of_users
        #   end
        # @return [Boolean] true if the +number_of_users+ element is present on the page
        def number_of_users?
          # This is a stub, used for indexing. The method is dynamically generated.
        end
      end
    end
  end
end