brew/Library/Homebrew/test/cmd/reinstall_spec.rb
Mike McQuaid 94416e82f0
Add new odeprecated, odisabled, remove disabled code.
Prepare the usual deprecation cycle for Homebrew 4.4.0.
2024-09-24 10:15:34 +01:00

24 lines
590 B
Ruby

# frozen_string_literal: true
require "extend/ENV"
require "cmd/reinstall"
require "cmd/shared_examples/args_parse"
RSpec.describe Homebrew::Cmd::Reinstall do
it_behaves_like "parseable arguments"
it "reinstalls a Formula", :integration_test do
install_test_formula "testball"
foo_dir = HOMEBREW_CELLAR/"testball/0.1/bin"
expect(foo_dir).to exist
FileUtils.rm_r(foo_dir)
expect { brew "reinstall", "testball" }
.to output(/Reinstalling testball/).to_stdout
.and not_to_output.to_stderr
.and be_a_success
expect(foo_dir).to exist
end
end