summaryrefslogtreecommitdiff
path: root/qa/qa/runtime/path.rb
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