aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test
diff options
context:
space:
mode:
authorMike McQuaid2016-09-05 21:32:58 +0100
committerMike McQuaid2016-09-08 20:46:37 +0100
commit4f6bae46f9c0f7b713cdbb999318460135f423de (patch)
tree124cba75648bc3e497dea9683acaf4e20b9b9dd1 /Library/Homebrew/test
parent691d57f59477a512df1a63a115be52bd09560d34 (diff)
downloadbrew-4f6bae46f9c0f7b713cdbb999318460135f423de.tar.bz2
cmd/*: don't restrict dev-cmd to Homebrew developers.
Diffstat (limited to 'Library/Homebrew/test')
-rw-r--r--Library/Homebrew/test/test_commands.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/Library/Homebrew/test/test_commands.rb b/Library/Homebrew/test/test_commands.rb
index b6dd5c2be..4a24107a9 100644
--- a/Library/Homebrew/test/test_commands.rb
+++ b/Library/Homebrew/test/test_commands.rb
@@ -70,10 +70,6 @@ class CommandsTests < Homebrew::TestCase
end
def test_internal_dev_command_path
- ARGV.stubs(:homebrew_developer?).returns false
- assert_nil Homebrew.send(:internal_command_path, "rbdevcmd")
-
- ARGV.stubs(:homebrew_developer?).returns true
assert_equal HOMEBREW_LIBRARY_PATH/"dev-cmd/rbdevcmd.rb",
Homebrew.send(:internal_command_path, "rbdevcmd")
assert_equal HOMEBREW_LIBRARY_PATH/"dev-cmd/shdevcmd.sh",