fixed some tests when the extension is not enabled
authorFabien Potencier <fabien.potencier@gmail.com>
Thu, 6 Dec 2012 07:11:36 +0000 (08:11 +0100)
committerFabien Potencier <fabien.potencier@gmail.com>
Thu, 6 Dec 2012 07:14:48 +0000 (08:14 +0100)
test/Twig/Tests/TemplateTest.php

index 2a9768a..ac67e02 100644 (file)
@@ -123,10 +123,15 @@ class Twig_Tests_TemplateTest extends PHPUnit_Framework_TestCase
 
     public function getGetAttributeWithTemplateAsObject()
     {
-        return array(
+        $bools = array(
             array(false),
-            array(true),
         );
+
+        if (function_exists('twig_template_get_attributes')) {
+            $bools[] = array(true);
+        }
+
+        return $bools;
     }
 
     /**