From: Fabien Potencier Date: Tue, 8 Jun 2010 14:12:41 +0000 (+0200) Subject: moved the unit test bootstrap file to a more obvious place X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=3fb36c0fcb254678bc90d9f54992d239c3cfa8d1;p=web%2Fkonrad%2Ftwig.git moved the unit test bootstrap file to a more obvious place --- diff --git a/phpunit.xml b/phpunit.xml index 83dd783..693dec4 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -9,7 +9,7 @@ processIsolation="false" stopOnFailure="false" syntaxCheck="false" - bootstrap="test/Twig/Tests/bootstrap.php" + bootstrap="test/bootstrap.php" > diff --git a/test/Twig/Tests/bootstrap.php b/test/bootstrap.php similarity index 77% rename from test/Twig/Tests/bootstrap.php rename to test/bootstrap.php index 0b2d0a0..36eb46a 100644 --- a/test/Twig/Tests/bootstrap.php +++ b/test/bootstrap.php @@ -9,5 +9,5 @@ * file that was distributed with this source code. */ -require_once dirname(__FILE__).'/../../../lib/Twig/Autoloader.php'; +require_once dirname(__FILE__).'/../lib/Twig/Autoloader.php'; Twig_Autoloader::register();