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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'qa/lib/gitlab/page/group/settings/billing.stub.rb')
-rw-r--r--qa/lib/gitlab/page/group/settings/billing.stub.rb107
1 files changed, 107 insertions, 0 deletions
diff --git a/qa/lib/gitlab/page/group/settings/billing.stub.rb b/qa/lib/gitlab/page/group/settings/billing.stub.rb
new file mode 100644
index 00000000000..64176af794a
--- /dev/null
+++ b/qa/lib/gitlab/page/group/settings/billing.stub.rb
@@ -0,0 +1,107 @@
+# frozen_string_literal: true
+
+module Gitlab
+ module Page
+ module Group
+ module Settings
+ module Billing
+ # @note Defined as +h4 :billing_plan_header+
+ # @return [String] The text content or value of +billing_plan_header+
+ def billing_plan_header
+ # This is a stub, used for indexing. The method is dynamically generated.
+ end
+
+ # @example
+ # Gitlab::Page::Group::Settings::Billing.perform do |billing|
+ # expect(billing.billing_plan_header_element).to exist
+ # end
+ # @return [Watir::H4] The raw +H4+ element
+ def billing_plan_header_element
+ # This is a stub, used for indexing. The method is dynamically generated.
+ end
+
+ # @example
+ # Gitlab::Page::Group::Settings::Billing.perform do |billing|
+ # expect(billing).to be_billing_plan_header
+ # end
+ # @return [Boolean] true if the +billing_plan_header+ element is present on the page
+ def billing_plan_header?
+ # This is a stub, used for indexing. The method is dynamically generated.
+ end
+
+ # @note Defined as +link :start_your_free_trial+
+ # Clicks +start_your_free_trial+
+ def start_your_free_trial
+ # This is a stub, used for indexing. The method is dynamically generated.
+ end
+
+ # @example
+ # Gitlab::Page::Group::Settings::Billing.perform do |billing|
+ # expect(billing.start_your_free_trial_element).to exist
+ # end
+ # @return [Watir::Link] The raw +Link+ element
+ def start_your_free_trial_element
+ # This is a stub, used for indexing. The method is dynamically generated.
+ end
+
+ # @example
+ # Gitlab::Page::Group::Settings::Billing.perform do |billing|
+ # expect(billing).to be_start_your_free_trial
+ # end
+ # @return [Boolean] true if the +start_your_free_trial+ element is present on the page
+ def start_your_free_trial?
+ # This is a stub, used for indexing. The method is dynamically generated.
+ end
+
+ # @note Defined as +link :upgrade_to_premium+
+ # Clicks +upgrade_to_premium+
+ def upgrade_to_premium
+ # This is a stub, used for indexing. The method is dynamically generated.
+ end
+
+ # @example
+ # Gitlab::Page::Group::Settings::Billing.perform do |billing|
+ # expect(billing.upgrade_to_premium_element).to exist
+ # end
+ # @return [Watir::Link] The raw +Link+ element
+ def upgrade_to_premium_element
+ # This is a stub, used for indexing. The method is dynamically generated.
+ end
+
+ # @example
+ # Gitlab::Page::Group::Settings::Billing.perform do |billing|
+ # expect(billing).to be_upgrade_to_premium
+ # end
+ # @return [Boolean] true if the +upgrade_to_premium+ element is present on the page
+ def upgrade_to_premium?
+ # This is a stub, used for indexing. The method is dynamically generated.
+ end
+
+ # @note Defined as +link :upgrade_to_ultimate+
+ # Clicks +upgrade_to_ultimate+
+ def upgrade_to_ultimate
+ # This is a stub, used for indexing. The method is dynamically generated.
+ end
+
+ # @example
+ # Gitlab::Page::Group::Settings::Billing.perform do |billing|
+ # expect(billing.upgrade_to_ultimate_element).to exist
+ # end
+ # @return [Watir::Link] The raw +Link+ element
+ def upgrade_to_ultimate_element
+ # This is a stub, used for indexing. The method is dynamically generated.
+ end
+
+ # @example
+ # Gitlab::Page::Group::Settings::Billing.perform do |billing|
+ # expect(billing).to be_upgrade_to_ultimate
+ # end
+ # @return [Boolean] true if the +upgrade_to_ultimate+ element is present on the page
+ def upgrade_to_ultimate?
+ # This is a stub, used for indexing. The method is dynamically generated.
+ end
+ end
+ end
+ end
+ end
+end