Removing the last exclusion from the AllHelper group.

This commit is contained in:
mark_story 2010-08-26 23:31:25 -04:00
parent 1a52442057
commit 1e6064ceae

View file

@ -42,11 +42,8 @@ class AllHelpersTest extends PHPUnit_Framework_TestSuite {
$helperIterator = new DirectoryIterator(CORE_TEST_CASES . DS . 'libs' . DS . 'view' . DS . 'helpers' . DS);
// The following test cases cause segfaults for me.
$segfaulty = array('cache.test.php');
foreach ($helperIterator as $i => $file) {
if (!$file->isDot() && !in_array($file->getFilename(), $segfaulty)) {
if (!$file->isDot()) {
$suite->addTestfile($file->getPathname());
}
}