From: Ævar Arnfjörð Bjarmason Date: Fri, 20 Jan 2006 22:49:07 +0000 (+0000) Subject: * Added options to install phpunit for the lazy X-Git-Tag: 1.6.0~471 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=89dda00bdfbf6892098b3d3d3b3db93385ce8d39;p=lhc%2Fweb%2Fwiklou.git * Added options to install phpunit for the lazy --- diff --git a/tests/Makefile b/tests/Makefile index d980c9cb69..0a649927ed 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -1,6 +1,15 @@ .PHONY: help test -help: - # Run 'make test' to run the unit tests. - -test: +all test: php RunTests.php +install: + cvs -z9 -d:pserver:cvsread:@cvs.php.net:/repository/ co -P pear/PHPUnit + mv pear/PHPUnit . + rm -rf pear +clean: + rm -rf PHPUnit pear +help: + # Options: + # test (default) Run the unit tests + # install Install PHPUnit from CVS + # clean Remove local PHPUnit install + # help You're looking at it!