brew/Library/Homebrew/test/unpack_strategy/uncompressed_spec.rb
2020-10-10 14:59:39 +02:00

15 lines
262 B
Ruby

# typed: false
# frozen_string_literal: true
require_relative "shared_examples"
describe UnpackStrategy::Uncompressed do
let(:path) {
(mktmpdir/"test").tap do |path|
FileUtils.touch path
end
}
include_examples "UnpackStrategy::detect"
end