aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test
diff options
context:
space:
mode:
authorMike McQuaid2017-12-08 16:33:33 +0000
committerMike McQuaid2017-12-08 16:33:33 +0000
commit6b9ca5dbf5b625f1da93b82f5752b37ee0c61600 (patch)
tree7e81b0ea7b042f9061b3b47ee241507eded3950b /Library/Homebrew/test
parentf52d69abea388902346cf839fda0ab4a4d11618a (diff)
downloadbrew-6b9ca5dbf5b625f1da93b82f5752b37ee0c61600.tar.bz2
Remove some unset/checked environment checks
These will be redundant once environment filtering is on by default in #3529.
Diffstat (limited to 'Library/Homebrew/test')
-rw-r--r--Library/Homebrew/test/os/mac/diagnostic_spec.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/Library/Homebrew/test/os/mac/diagnostic_spec.rb b/Library/Homebrew/test/os/mac/diagnostic_spec.rb
index 83d95c2ef..f04652a93 100644
--- a/Library/Homebrew/test/os/mac/diagnostic_spec.rb
+++ b/Library/Homebrew/test/os/mac/diagnostic_spec.rb
@@ -15,14 +15,6 @@ describe Homebrew::Diagnostic::Checks do
.to match("We do not provide support for this pre-release version.")
end
- specify "#check_for_unsupported_curl_vars" do
- allow(MacOS).to receive(:version).and_return(OS::Mac::Version.new("10.10"))
- ENV["SSL_CERT_DIR"] = "/some/path"
-
- expect(subject.check_for_unsupported_curl_vars)
- .to match("SSL_CERT_DIR support was removed from Apple's curl.")
- end
-
specify "#check_for_beta_xquartz" do
allow(MacOS::XQuartz).to receive(:version).and_return("2.7.10_beta2")