aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/support/helper/fixtures.rb
blob: 716fe200816e5889d937bc0e5ee63f9b14bc9d46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Test
  module Helper
    module Fixtures
      def dylib_path(name)
        Pathname.new("#{TEST_FIXTURE_DIR}/mach/#{name}.dylib")
      end

      def bundle_path(name)
        Pathname.new("#{TEST_FIXTURE_DIR}/mach/#{name}.bundle")
      end
    end
  end
end