merged branch simensen/fix-bundle-tests (PR #4805)

Commits
-------

28b6557 class_exists was returning fals for the container aware interface

Discussion
----------

class_exists was returning fals for the container aware interface

This test was marked skipped when it should not have been.
This commit is contained in:
Fabien Potencier 2012-07-09 18:16:25 +02:00
commit 6cf8e298ab

View File

@ -25,7 +25,7 @@ class BundleTest extends \PHPUnit_Framework_TestCase
$this->markTestSkipped('The "Console" component is not available');
}
if (!class_exists('Symfony\Component\DependencyInjection\ContainerAwareInterface')) {
if (!interface_exists('Symfony\Component\DependencyInjection\ContainerAwareInterface')) {
$this->markTestSkipped('The "DependencyInjection" component is not available');
}