Add tests

This commit is contained in:
Douglas Eichelberger 2023-03-08 14:55:07 -08:00
parent 8a57c37c33
commit 826aca7217

View File

@ -8,4 +8,14 @@ describe "brew", :integration_test do
.and not_to_output.to_stderr .and not_to_output.to_stderr
.and be_a_success .and be_a_success
end end
it "does not require i18n" do
# This is a transitive dependency of activesupport, but we don't use it.
expect { I18n }.to raise_error(NameError)
end
it "does not require ActiveSupport::Inflector" do
# ActiveSupport inflections are slow to load, so we don't use them.
expect { ActiveSupport::Inflector }.to raise_error(NameError)
end
end end