mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
28 lines
703 B
Ruby
28 lines
703 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "cmd/shared_examples/args_parse"
|
|
|
|
describe "brew cleanup" do
|
|
before do
|
|
FileUtils.mkdir_p HOMEBREW_LIBRARY/"Homebrew/vendor/"
|
|
FileUtils.touch HOMEBREW_LIBRARY/"Homebrew/vendor/portable-ruby-version"
|
|
end
|
|
|
|
after do
|
|
FileUtils.rm_rf HOMEBREW_LIBRARY/"Homebrew"
|
|
end
|
|
|
|
it_behaves_like "parseable arguments"
|
|
|
|
describe "--prune=all", :integration_test do
|
|
it "removes all files in Homebrew's cache" do
|
|
(HOMEBREW_CACHE/"test").write "test"
|
|
|
|
expect { brew "cleanup", "--prune=all" }
|
|
.to output(%r{#{Regexp.escape(HOMEBREW_CACHE)}/test}o).to_stdout
|
|
.and not_to_output.to_stderr
|
|
.and be_a_success
|
|
end
|
|
end
|
|
end
|