mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
14 lines
250 B
Ruby
14 lines
250 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative "shared_examples"
|
|
|
|
describe UnpackStrategy::Uncompressed do
|
|
let(:path) do
|
|
(mktmpdir/"test").tap do |path|
|
|
FileUtils.touch path
|
|
end
|
|
end
|
|
|
|
include_examples "UnpackStrategy::detect"
|
|
end
|