mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
12 lines
287 B
Ruby
12 lines
287 B
Ruby
# typed: false
|
|
# frozen_string_literal: true
|
|
|
|
require_relative "shared_examples"
|
|
|
|
describe UnpackStrategy::Xar, :needs_macos do
|
|
let(:path) { TEST_FIXTURE_DIR/"cask/container.xar" }
|
|
|
|
include_examples "UnpackStrategy::detect"
|
|
include_examples "#extract", children: ["container"]
|
|
end
|