
- Test `_args` methods - Remove multiple integration tests (except where essential e.g. `install`, `help`)
15 lines
333 B
Ruby
15 lines
333 B
Ruby
require "cmd/shared_examples/args_parse"
|
|
|
|
describe "Homebrew.unpin_args" do
|
|
it_behaves_like "parseable arguments"
|
|
end
|
|
|
|
describe "brew unpin", :integration_test do
|
|
it "unpins a Formula's version" do
|
|
install_test_formula "testball"
|
|
Formula["testball"].pin
|
|
|
|
expect { brew "unpin", "testball" }.to be_a_success
|
|
end
|
|
end
|