34 lines
1.1 KiB
Ruby
34 lines
1.1 KiB
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Gitlab
|
||
|
module Page
|
||
|
module Admin
|
||
|
module Subscription
|
||
|
# @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
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|