22 lines
		
	
	
		
			731 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			731 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| require "cmd/shared_examples/args_parse"
 | |
| require "dev-cmd/tap-new"
 | |
| 
 | |
| RSpec.describe Homebrew::DevCmd::TapNew 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", "--no-git", "--verbose", "homebrew/foo" }
 | |
|       .to be_a_success
 | |
|       .and output(%r{homebrew/foo}).to_stdout
 | |
|       .and not_to_output.to_stderr
 | |
| 
 | |
|     expect(HOMEBREW_LIBRARY/"Taps/homebrew/homebrew-foo/README.md").to exist
 | |
|     expect(HOMEBREW_LIBRARY/"Taps/homebrew/homebrew-foo/.github/workflows/tests.yml").to exist
 | |
|   end
 | |
| end
 | 
