summaryrefslogtreecommitdiff
path: root/qa/lib/gitlab/page/admin/subscription.stub.rb
blob: 89d7bfb95d9e068581551171ee9b9b6d88a0ecb3 (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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
# frozen_string_literal: true

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        # @example
        #   Gitlab::Page::Admin::Subscription.perform do |subscription|
        #     expect(subscription).to be_email
        #   end
        # @return [Boolean] true if the +email+ element is present on the page
        def email?
          # 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::Subscription.perform do |subscription|
        #     expect(subscription.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::Subscription.perform do |subscription|
        #     expect(subscription).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 +h2 :maximum_users+
        # @return [String] The text content or value of +maximum_users+
        def maximum_users
          # This is a stub, used for indexing. The method is dynamically generated.
        end

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

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

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

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

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

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

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

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

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

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

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