Class: Gitlab::QA::Scenario::Test::Instance::SecureVersion
- Inherits:
-
Gitlab::QA::Scenario::Template
- Object
- Gitlab::QA::Scenario::Template
- Gitlab::QA::Scenario::Test::Instance::SecureVersion
- Includes:
- Gitlab::QA::Support::Shellout
- Defined in:
- lib/gitlab/qa/scenario/test/instance/secure_version.rb
Instance Attribute Summary collapse
-
#seed_admin_token ⇒ Object
writeonly
Sets the attribute seed_admin_token.
-
#volumes ⇒ Object
writeonly
Sets the attribute volumes.
Instance Method Summary collapse
-
#initialize ⇒ SecureVersion
constructor
A new instance of SecureVersion.
- #perform(release, *_rspec_args) ⇒ Object
Methods included from Gitlab::QA::Support::Shellout
Methods inherited from Gitlab::QA::Scenario::Template
Constructor Details
#initialize ⇒ SecureVersion
Returns a new instance of SecureVersion.
13 14 15 16 17 18 19 20 21 22 |
# File 'lib/gitlab/qa/scenario/test/instance/secure_version.rb', line 13 def initialize @volumes = {} @seed_admin_token = true @pipeline_ops = Component::PipelineOps.new @runner_ops = Component::RunnerOps.new @importer = Component::ProjectImporter.new( ENV.fetch('PROJECT_URL', nil), ENV.fetch('PROJECT_NAME', nil)) @license_ops = Component::LicenseOps.new end |
Instance Attribute Details
#seed_admin_token=(value) ⇒ Object (writeonly)
Sets the attribute seed_admin_token
11 12 13 |
# File 'lib/gitlab/qa/scenario/test/instance/secure_version.rb', line 11 def seed_admin_token=(value) @seed_admin_token = value end |
#volumes=(value) ⇒ Object (writeonly)
Sets the attribute volumes
11 12 13 |
# File 'lib/gitlab/qa/scenario/test/instance/secure_version.rb', line 11 def volumes=(value) @volumes = value end |