brew/Library/Homebrew/test/dev-cmd/create_spec.rb
Mike McQuaid aa44509be9
Test dev-cmd *_args methods
Also, add a few missing invocations.
2019-03-27 13:35:42 +00:00

18 lines
528 B
Ruby

require "cmd/shared_examples/args_parse"
describe "Homebrew.create_args" do
it_behaves_like "parseable arguments"
end
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
brew "create", url, "HOMEBREW_EDITOR" => "/bin/cat"
expect(formula_file).to exist
expect(formula_file.read).to match(%Q(sha256 "#{TESTBALL_SHA256}"))
end
end