summaryrefslogtreecommitdiff
path: root/qa/qa/scenario/shared_attributes.rb
blob: 40d5c6b1ff1618cee346350b4514cc9b99ecfd7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module QA
  module Scenario
    module SharedAttributes
      include Bootable

      attribute :gitlab_address, '--address URL', 'Address of the instance to test'
      attribute :enable_feature, '--enable-feature FEATURE_FLAG', 'Enable a feature before running tests'
    end
  end
end