Changeset 19552
- Timestamp:
- 06/25/09 17:15:15 (8 months ago)
- Files:
-
- components/yaml/trunk/test/prove.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
components/yaml/trunk/test/prove.php
r18732 r19552 28 28 $h->base_dir = realpath(dirname(__FILE__).'/..'); 29 29 30 $h->register(array( 31 dirname(__FILE__).'/sfYamlInlineTest.php', 32 dirname(__FILE__).'/sfYamlDumperTest.php', 33 dirname(__FILE__).'/sfYamlParserTest.php', 34 )); 30 foreach (new DirectoryIterator(dirname(__FILE__)) as $file) 31 { 32 if (false !== strpos($file, 'Test.php')) 33 { 34 $h->register($file->getRealPath()); 35 } 36 } 35 37 36 38 exit($h->run() ? 0 : 1);

