mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Making the test assert what it is intended to assert.
This commit is contained in:
parent
d1be66f2e1
commit
fe9762d053
1 changed files with 13 additions and 13 deletions
|
@ -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));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue