Merge pull request #415 from scottharwell/bake-test-plurals

Bake test plurals
This commit is contained in:
Mark Story 2012-01-17 09:23:07 -08:00
commit c718b102a9

View file

@ -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;?>
}