mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00

We have an awful lot of integration tests and they are (comparatively) really slow. Let's kill those that test edge case conditions and focus on those that test that our functionality works as expected. Edge cases can be better tested with unit tests.
23 lines
574 B
Ruby
23 lines
574 B
Ruby
describe "brew desc", :integration_test do
|
|
let(:desc_cache) { HOMEBREW_CACHE/"desc_cache.json" }
|
|
|
|
it "shows a given Formula's description" do
|
|
setup_test_formula "testball"
|
|
|
|
expect { brew "desc", "testball" }
|
|
.to output("testball: Some test\n").to_stdout
|
|
.and not_to_output.to_stderr
|
|
.and be_a_success
|
|
end
|
|
|
|
describe "--description" do
|
|
it "creates a description cache" do
|
|
expect(desc_cache).not_to exist
|
|
|
|
expect { brew "desc", "--description", "testball" }.to be_a_success
|
|
|
|
expect(desc_cache).to exist
|
|
end
|
|
end
|
|
end
|