2020-10-10 14:16:11 +02:00
|
|
|
# typed: false
|
2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-27 11:49:56 +00:00
|
|
|
require "cmd/shared_examples/args_parse"
|
|
|
|
|
2021-02-01 16:14:25 -05:00
|
|
|
describe "brew create" do
|
2017-02-23 06:00:46 +01:00
|
|
|
let(:url) { "file://#{TEST_FIXTURE_DIR}/tarballs/testball-0.1.tbz" }
|
|
|
|
let(:formula_file) { CoreTap.new.formula_dir/"testball.rb" }
|
|
|
|
|
2021-02-01 16:14:25 -05:00
|
|
|
it_behaves_like "parseable arguments"
|
|
|
|
|
|
|
|
it "creates a new Formula file for a given URL", :integration_test do
|
2017-07-29 19:55:05 +02:00
|
|
|
brew "create", url, "HOMEBREW_EDITOR" => "/bin/cat"
|
2017-02-23 06:00:46 +01:00
|
|
|
|
|
|
|
expect(formula_file).to exist
|
|
|
|
expect(formula_file.read).to match(%Q(sha256 "#{TESTBALL_SHA256}"))
|
|
|
|
end
|
|
|
|
end
|