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

airgapped.rb « instance « test « scenario « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1d4d57b342e9e42466014802ade268de3f698225 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module QA
  module Scenario
    module Test
      module Instance
        class Airgapped < Template
          include Bootable
          include SharedAttributes
          def perform(address, *rspec_options)
            Runtime::Scenario.define(:network, 'airgapped')

            super
          end
        end
      end
    end
  end
end