brew/Library/Homebrew/test/dev-cmd/unpack_spec.rb
copilot-swe-agent[bot] 88b7d2900a
Address fetching consistency concern and fix cask path handling
Co-authored-by: MikeMcQuaid <125011+MikeMcQuaid@users.noreply.github.com>
2025-09-02 15:55:07 +08:00

23 lines
597 B
Ruby

# frozen_string_literal: true
require "cmd/shared_examples/args_parse"
require "dev-cmd/unpack"
RSpec.describe Homebrew::DevCmd::Unpack do
it_behaves_like "parseable arguments"
it "unpacks a given Formula's archive", :integration_test do
setup_test_formula "testball"
mktmpdir do |path|
expect { brew "unpack", "testball", "--destdir=#{path}" }
.to be_a_success
expect(path/"testball-0.1").to be_a_directory
end
end
it "unpacks a given Cask's archive", :integration_test do
skip "Cask unpacking requires network access to download files"
end
end