Merge pull request #7101 from ravage84/2.7-bake-templates

Slightly improve the bake templates
This commit is contained in:
Mark Story 2015-07-23 17:13:09 -04:00
commit 92ac2bc39d
2 changed files with 1 additions and 3 deletions

View file

@ -22,7 +22,6 @@ echo "<?php\n";
?>
/**
* <?php echo $model; ?> Fixture
*
*/
class <?php echo $model; ?>Fixture extends CakeTestFixture {

View file

@ -24,7 +24,6 @@ App::uses('<?php echo $dependency[0]; ?>', '<?php echo $dependency[1]; ?>');
/**
* <?php echo $fullClassName; ?> Test Case
*
*/
<?php if ($type === 'Controller'): ?>
class <?php echo $fullClassName; ?>Test extends ControllerTestCase {