20 lines
403 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-02-21 04:52:53 +01:00
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
def cask_path(name)
Pathname.new("#{TEST_FIXTURE_DIR}/cask/Casks/#{name}.rb")
end
2017-02-21 04:52:53 +01:00
end
end
end