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

path.rb « runtime « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3169c5dd74389f900168f078f6de56679546136a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module QA
  module Runtime
    module Path
      extend self

      def qa_root
        ::File.expand_path('../../', __dir__)
      end
    end
  end
end