brew/Library/Homebrew/test/cmd/unalias_spec.rb
Mike McQuaid 8adc188992
Import brew alias and brew unalias commands
Import these from the homebrew/aliases tap and deprecate that tap.

This required a little messing around with class/module/constant names
to get `brew tests` and `brew typecheck` to play nicely.

I added also added Sorbet type signatures and integration tests.
2025-02-07 14:31:50 +00:00

28 lines
753 B
Ruby

# frozen_string_literal: true
require "cmd/unalias"
require "cmd/shared_examples/args_parse"
RSpec.describe Homebrew::Cmd::Unalias do
it_behaves_like "parseable arguments"
it "unsets an alias", :integration_test do
expect { brew "alias", "foo=bar" }
.to not_to_output.to_stdout
.and not_to_output.to_stderr
.and be_a_success
expect { brew "alias" }
.to output(/brew alias foo='bar'/).to_stdout
.and not_to_output.to_stderr
.and be_a_success
expect { brew "unalias", "foo" }
.to not_to_output.to_stdout
.and not_to_output.to_stderr
.and be_a_success
expect { brew "alias" }
.to not_to_output.to_stdout
.and not_to_output.to_stderr
.and be_a_success
end
end