dev-cmd/tap-new: use Utils::Git.setup_gpg!

This commit is contained in:
Nanda H Krishna 2021-04-02 14:58:31 +05:30
parent d407a86878
commit f648b071ad
No known key found for this signature in database
GPG Key ID: 067E5FCD58ADF3AA
3 changed files with 7 additions and 1 deletions

View File

@ -149,6 +149,9 @@ module Homebrew
unless args.no_git?
cd tap.path do
Utils::Git.set_name_email!
Utils::Git.setup_gpg!
# Would be nice to use --initial-branch here but it's not available in
# older versions of Git that we support.
safe_system "git", "-c", "init.defaultBranch=#{branch}", "init"

View File

@ -7,6 +7,9 @@ describe "brew tap-new" do
it_behaves_like "parseable arguments"
it "initializes a new tap with a README file and GitHub Actions CI", :integration_test do
# To ensure that Utils::Git.setup_gpg! doesn't raise an error
setup_test_formula "gnupg"
expect { brew "tap-new", "homebrew/foo", "--verbose" }
.to be_a_success
.and output(%r{homebrew/foo}).to_stdout

View File

@ -162,7 +162,7 @@ RSpec.shared_context "integration test" do # rubocop:disable RSpec/ContextWordin
# something here
RUBY
when "foo", "patchelf"
when "foo", "gnupg", "patchelf"
content = <<~RUBY
url "https://brew.sh/#{name}-1.0"
RUBY