aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Contributions/cmds/brew-tests.rb
blob: 0a2fb78e7633d3aafbc34b939e83932c725ad033 (plain)
1
2
3
4
5
6
7
8
9
10
11
module Homebrew extend self
  def tests
    (HOMEBREW_LIBRARY/'Homebrew/test').cd do
      ENV['TESTOPTS'] = '-v' if ARGV.verbose?
      system "rake", "test"
      exit $?.exitstatus
    end
  end
end

Homebrew.tests