|
|
@@ -70,7 +70,7 @@ class ProjectTaskTest extends CakeTestCase {
|
|
|
* @return void
|
|
|
*/
|
|
|
protected function _setupTestProject() {
|
|
|
- $skel = CAKE . 'Console' . DS . 'templates' . DS . 'skel';
|
|
|
+ $skel = CAKE . 'Console' . DS . 'Templates' . DS . 'skel';
|
|
|
$this->Task->expects($this->at(0))->method('in')->will($this->returnValue('y'));
|
|
|
$this->Task->bake($this->Task->path . 'bake_test_app', $skel);
|
|
|
}
|
|
|
@@ -116,7 +116,7 @@ class ProjectTaskTest extends CakeTestCase {
|
|
|
*/
|
|
|
public function testExecuteWithAbsolutePath() {
|
|
|
$this->Task->args[0] = TMP . 'tests' . DS . 'bake_test_app';
|
|
|
- $this->Task->params['skel'] = CAKE . 'Console' . DS . 'templates' . DS . 'skel';
|
|
|
+ $this->Task->params['skel'] = CAKE . 'Console' . DS . 'Templates' . DS . 'skel';
|
|
|
$this->Task->expects($this->at(0))->method('in')->will($this->returnValue('y'));
|
|
|
$this->Task->execute();
|
|
|
|
|
|
@@ -269,7 +269,7 @@ class ProjectTaskTest extends CakeTestCase {
|
|
|
* @return void
|
|
|
*/
|
|
|
public function testExecute() {
|
|
|
- $this->Task->params['skel'] = CAKE . 'Console' . DS. 'templates' . DS . 'skel';
|
|
|
+ $this->Task->params['skel'] = CAKE . 'Console' . DS. 'Templates' . DS . 'skel';
|
|
|
$this->Task->params['working'] = TMP . 'tests' . DS;
|
|
|
|
|
|
$path = $this->Task->path . 'bake_test_app';
|