Unit_Test.php.diff
| trunk/modules/unit_test/libraries/Unit_Test.php (working copy) | ||
|---|---|---|
| 65 | 65 |
$class = substr($path, strrpos($path, '/') + 1, -(strlen(EXT))); |
| 66 | 66 | |
| 67 | 67 |
// Skip hidden files |
| 68 |
if (substr($class, 0, 1) === '.')
|
|
| 68 |
if ($class[0] === '.')
|
|
| 69 | 69 |
continue; |
| 70 | 70 | |
| 71 | 71 |
// Check for duplicate test class name |