Skip to content

Commit

Permalink
Removing the last exclusion from the AllHelper group.
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Aug 27, 2010
1 parent 1a52442 commit 1e6064c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions cake/tests/cases/libs/all_helpers.test.php
Expand Up @@ -42,11 +42,8 @@ public static function suite() {

$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());
}
}
Expand Down

0 comments on commit 1e6064c

Please sign in to comment.