Sha256: ddad426e49e10f7998004bec241d0d9dd7587479b7c29c4128ae35288c951f52

Contents?: true

Size: 1.03 KB

Versions: 1

Compression:

Stored size: 1.03 KB

Contents

$LOAD_PATH << File.expand_path(File.dirname(__FILE__))

module Gitlab
  module QA
    autoload :Release, 'qa/release'

    module Runtime
      autoload :Env, 'qa/runtime/env'
    end

    module Scenario
      autoload :Actable, 'qa/scenario/actable'
      autoload :Template, 'qa/scenario/template'

      module Test
        module Instance
          autoload :Image, 'qa/scenario/test/instance/image'
          autoload :Any, 'qa/scenario/test/instance/any'
        end

        module Omnibus
          autoload :Image, 'qa/scenario/test/omnibus/image'
          autoload :Upgrade, 'qa/scenario/test/omnibus/upgrade'
        end

        module Integration
          autoload :Mattermost, 'qa/scenario/test/integration/mattermost'
        end
      end
    end

    module Component
      autoload :Gitlab, 'qa/component/gitlab'
      autoload :Specs, 'qa/component/specs'
    end

    module Docker
      autoload :Engine, 'qa/docker/engine'
      autoload :Command, 'qa/docker/command'
      autoload :Shellout, 'qa/docker/shellout'
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gitlab-qa-0.3.0 lib/gitlab/qa.rb