Skip to content

Commit

Permalink
Merge pull request #415 from scottharwell/bake-test-plurals
Browse files Browse the repository at this point in the history
Bake test plurals
  • Loading branch information
markstory committed Jan 17, 2012
2 parents f11389f + 153b9f9 commit c718b10
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions lib/Cake/Console/Templates/default/classes/test.ctp
Expand Up @@ -86,13 +86,12 @@ class <?php echo $fullClassName; ?>TestCase extends CakeTestCase {

<?php foreach ($methods as $method): ?>
/**
* test<?php echo Inflector::classify($method); ?> method
* test<?php echo Inflector::camelize($method); ?> method
*
* @return void
*/
public function test<?php echo Inflector::classify($method); ?>() {
public function test<?php echo Inflector::camelize($method); ?>() {

}

<?php endforeach;?>
}

0 comments on commit c718b10

Please sign in to comment.