aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/tests.rb
blob: 27f522d652a654dadca5aeacf5751135f2d951a9 (plain)
1
2
3
4
5
6
7
8
9
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