remove stub class from controller tests template and mock condition to

make it extends ControllerTestCase
This commit is contained in:
Washington 2012-05-11 14:51:56 -03:00
parent a238116734
commit c651bf25d3
2 changed files with 2 additions and 31 deletions

View file

@ -460,7 +460,7 @@ class TestTask extends BakeTask {
}
if ($type == 'controller') {
$className = substr($fullClassName, 0, -10);
$construct = "new Test$fullClassName();\n";
$construct = "new $fullClassName();\n";
$post = "\$this->{$className}->constructClasses();\n";
}
if ($type == 'helper') {