Making the test assert what it is intended to assert.

This commit is contained in:
Renan Gonçalves 2011-10-19 16:48:03 +02:00
parent d1be66f2e1
commit fe9762d053

View file

@ -167,21 +167,21 @@ class ProjectTaskTest extends CakeTestCase {
$path = $this->Task->path . 'bake_test_app'; $path = $this->Task->path . 'bake_test_app';
$empty = array( $empty = array(
'Console' . DS . 'Command' . DS . 'Task', 'Console' . DS . 'Command' . DS . 'Task' => 'empty',
'Controller' . DS . 'Component', 'Controller' . DS . 'Component' => 'empty',
'Model' . DS . 'Behavior', 'Model' . DS . 'Behavior' => 'empty',
'View' . DS . 'Helper', 'View' . DS . 'Helper' => 'AppHelper.php',
'View' . DS . 'Errors', 'View' . DS . 'Errors' => 'empty',
'View' . DS . 'Scaffolds', 'View' . DS . 'Scaffolds' => 'empty',
'Test' . DS . 'Case' . DS . 'Model', 'Test' . DS . 'Case' . DS . 'Model' . DS . 'Behavior' => 'empty',
'Test' . DS . 'Case' . DS . 'Controller', 'Test' . DS . 'Case' . DS . 'Controller' . DS . 'Component' => 'empty',
'Test' . DS . 'Case' . DS . 'View' . DS . 'Helper', 'Test' . DS . 'Case' . DS . 'View' . DS . 'Helper' => 'empty',
'Test' . DS . 'Fixture', 'Test' . DS . 'Fixture' => 'empty',
'webroot' . DS . 'js' 'webroot' . DS . 'js' => 'empty'
); );
foreach ($empty as $dir) { foreach ($empty as $dir => $file) {
$this->assertTrue(is_dir($path . DS . $dir), 'Missing directory ' . $dir); $this->assertTrue(is_file($path . DS . $dir . DS . $file), sprintf('Missing %s file in %s', $file, $dir));
} }
} }