aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Contributions/cmd/brew-tests.rb
blob: 12c62ee6ac2b1bf87c85b0c4dbe29bca3c4b65f8 (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", "deps", "test"
      exit $?.exitstatus
    end
  end
end

Homebrew.tests