Skip to content
This repository has been archived by the owner on Jun 6, 2021. It is now read-only.

Commit

Permalink
Make phpunit runnable when invoked with just "phpunit"
Browse files Browse the repository at this point in the history
  • Loading branch information
christiaan committed Jan 15, 2013
1 parent 349218f commit ee87db2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Tests/autoload.php.dist
Expand Up @@ -2,7 +2,7 @@

$vendorDir = __DIR__ . '/../vendor';

if (!@include($vendorDir . '/.composer/autoload.php')) {
if (!@include($vendorDir . '/autoload.php')) {
die("You must set up the project dependencies, run the following commands:
wget http://getcomposer.org/composer.phar
php composer.phar install
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Expand Up @@ -9,7 +9,7 @@
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="./../../../../app/bootstrap.php.cache"
bootstrap="./Tests/bootstrap.php"
>

<testsuites>
Expand Down

0 comments on commit ee87db2

Please sign in to comment.