summaryrefslogtreecommitdiff
path: root/qa/qa/runtime/path.rb
blob: fd451f2df190ac0973909d541cfb800cbe9fc09a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

module QA
  module Runtime
    module Path
      extend self

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

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