mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
14 lines
430 B
Ruby
14 lines
430 B
Ruby
![]() |
describe "brew create", :integration_test do
|
||
|
let(:url) { "file://#{TEST_FIXTURE_DIR}/tarballs/testball-0.1.tbz" }
|
||
|
let(:formula_file) { CoreTap.new.formula_dir/"testball.rb" }
|
||
|
|
||
|
it "creates a new Formula file for a given URL" do
|
||
|
shutup do
|
||
|
brew "create", url, "HOMEBREW_EDITOR" => "/bin/cat"
|
||
|
end
|
||
|
|
||
|
expect(formula_file).to exist
|
||
|
expect(formula_file.read).to match(%Q(sha256 "#{TESTBALL_SHA256}"))
|
||
|
end
|
||
|
end
|