aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Contributions/cmd
diff options
context:
space:
mode:
authorAdam Vandenberg2014-05-19 20:29:54 -0700
committerAdam Vandenberg2014-05-21 08:27:13 -0700
commitc6f1ccc2157012cdbc7a70fa9cf8595a1fb5ac1a (patch)
tree531dc0f9d5f1e93c1116848c28906c664dcdbc7b /Library/Contributions/cmd
parentb2b74260dbf7ea106e9b905fb68419dc17f3ab7a (diff)
downloadbrew-c6f1ccc2157012cdbc7a70fa9cf8595a1fb5ac1a.tar.bz2
make `tests` an internal command
Diffstat (limited to 'Library/Contributions/cmd')
-rwxr-xr-xLibrary/Contributions/cmd/brew-tests.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/Library/Contributions/cmd/brew-tests.rb b/Library/Contributions/cmd/brew-tests.rb
deleted file mode 100755
index 12c62ee6a..000000000
--- a/Library/Contributions/cmd/brew-tests.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-module Homebrew extend self
- def tests
- (HOMEBREW_LIBRARY/'Homebrew/test').cd do
- ENV['TESTOPTS'] = '-v' if ARGV.verbose?
- system "rake", "deps", "test"
- exit $?.exitstatus
- end
- end
-end
-
-Homebrew.tests