Changeset 2271 for trunk/modules/unit_test/libraries/Unit_Test.php
- Timestamp:
- 03/10/2008 10:01:25 AM (10 months ago)
- Files:
-
- 1 modified
-
trunk/modules/unit_test/libraries/Unit_Test.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/unit_test/libraries/Unit_Test.php
r2270 r2271 26 26 foreach ((array) $paths as $path) 27 27 { 28 $this->paths[] = str_replace('\\', '/', realpath($path)) .'/';28 $this->paths[] = str_replace('\\', '/', realpath($path)); 29 29 } 30 30 … … 38 38 ) 39 39 { 40 // Normalize path 41 $path = str_replace('\\', '/', realpath($path)); 42 40 43 // Skip files without "_Test" suffix 41 44 if ( ! $file->isFile() OR substr($path, -9) !== '_Test'.EXT)
