tests: remove remainder of ARGV stubs

I was waiting for confirmation that there wasn't a good reason for these
to be stubbed before I removed them.
This commit is contained in:
Alyssa Ross 2017-01-21 15:46:28 +00:00
parent a736c7e317
commit 1e1de8c111

View File

@ -15,11 +15,11 @@ class SandboxTest < Homebrew::TestCase
f2 = formula { url "bar-1.0" }
f2.stubs(:tap).returns(Tap.fetch("test/tap"))
ARGV.stubs(:sandbox?).returns true
ENV["HOMEBREW_SANDBOX"] = "1"
assert Sandbox.formula?(f),
"Formulae should be sandboxed if --sandbox was passed."
ARGV.stubs(:sandbox?).returns false
ENV.delete("HOMEBREW_SANDBOX")
assert Sandbox.formula?(f),
"Formulae should be sandboxed if in a sandboxed tap."
refute Sandbox.formula?(f2),
@ -27,7 +27,7 @@ class SandboxTest < Homebrew::TestCase
end
def test_test?
ARGV.stubs(:no_sandbox?).returns false
ENV.delete("HOMEBREW_NO_SANDBOX")
assert Sandbox.test?,
"Tests should be sandboxed unless --no-sandbox was passed."
end