15 lines
		
	
	
		
			332 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			332 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| require "cmd/shared_examples/args_parse"
 | |
| 
 | |
| RSpec.describe "brew unpin" do
 | |
|   it_behaves_like "parseable arguments"
 | |
| 
 | |
|   it "unpins a Formula's version", :integration_test do
 | |
|     install_test_formula "testball"
 | |
|     Formula["testball"].pin
 | |
| 
 | |
|     expect { brew "unpin", "testball" }.to be_a_success
 | |
|   end
 | |
| end
 | 
