From 277e40bc7b25e3d336ac721b5e5d41c0aa330948 Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Sat, 13 Feb 2010 10:25:30 -0800 Subject: [PATCH] Add shell script 'tests' to run ruby test suites. --- Library/Homebrew/test/tests | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 Library/Homebrew/test/tests diff --git a/Library/Homebrew/test/tests b/Library/Homebrew/test/tests new file mode 100755 index 0000000000..5d2f60ae80 --- /dev/null +++ b/Library/Homebrew/test/tests @@ -0,0 +1,10 @@ +#!/usr/bin/env bash + +# This shell script runs Homebrew's test suite. +# +# Note: "formula_test" is omitted; these aren't unit tests but sanity checks +# on the real formulae. +# + +# Bulk of the tests +ruby unittest.rb $*