moved the unit test bootstrap file to a more obvious place
authorFabien Potencier <fabien.potencier@gmail.com>
Tue, 8 Jun 2010 14:12:41 +0000 (16:12 +0200)
committerFabien Potencier <fabien.potencier@gmail.com>
Tue, 8 Jun 2010 14:13:00 +0000 (16:13 +0200)
phpunit.xml
test/bootstrap.php [moved from test/Twig/Tests/bootstrap.php with 77% similarity]

index 83dd783..693dec4 100644 (file)
@@ -9,7 +9,7 @@
          processIsolation="false"
          stopOnFailure="false"
          syntaxCheck="false"
-         bootstrap="test/Twig/Tests/bootstrap.php"
+         bootstrap="test/bootstrap.php"
 >
   <testsuites>
     <testsuite name="Twig Test Suite">
similarity index 77%
rename from test/Twig/Tests/bootstrap.php
rename to test/bootstrap.php
index 0b2d0a0..36eb46a 100644 (file)
@@ -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();