Changeset 2284
- Timestamp:
- 03/11/2008 07:03:50 AM (9 months ago)
- Location:
- trunk/modules/unit_test
- Files:
-
- 2 modified
-
config/unit_test.php (modified) (1 diff)
-
controllers/unit_test.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/modules/unit_test/config/unit_test.php
r2283 r2284 5 5 * Default paths to scan for tests. 6 6 */ 7 $config['paths'] = array(); 7 $config['paths'] = array 8 ( 9 MODPATH.'unit_test/tests', 10 ); 8 11 9 12 /** -
trunk/modules/unit_test/controllers/unit_test.php
r2278 r2284 17 17 { 18 18 // Run tests and show results! 19 echo new Unit_Test (MODPATH.'unit_test/tests');19 echo new Unit_Test; 20 20 } 21 21
