Fixing the path used to create fixtures.

This commit is contained in:
Renan Gonçalves 2011-05-30 21:04:38 +02:00
parent f55fa4d026
commit d0af5c78d5
2 changed files with 4 additions and 4 deletions

View file

@ -57,7 +57,7 @@ class FixtureTask extends BakeTask {
*/
public function __construct($stdout = null, $stderr = null, $stdin = null) {
parent::__construct($stdout, $stderr, $stdin);
$this->path = APP . 'tests' . DS . 'Fixture' . DS;
$this->path = APP . 'Test' . DS . 'Fixture' . DS;
}
/**
@ -267,7 +267,7 @@ class FixtureTask extends BakeTask {
public function getPath() {
$path = $this->path;
if (isset($this->plugin)) {
$path = $this->_pluginPath($this->plugin) . 'tests' . DS . 'Fixture' . DS;
$path = $this->_pluginPath($this->plugin) . 'Test' . DS . 'Fixture' . DS;
}
return $path;
}

View file

@ -83,7 +83,7 @@ class FixtureTaskTest extends CakeTestCase {
$in = $this->getMock('ConsoleInput', array(), array(), '', false);
$Task = new FixtureTask($out, $out, $in);
$this->assertEqual($Task->path, APP . 'tests' . DS . 'Fixture' . DS);
$this->assertEqual($Task->path, APP . 'Test' . DS . 'Fixture' . DS);
}
/**
@ -362,7 +362,7 @@ class FixtureTaskTest extends CakeTestCase {
$this->Task->connection = 'test';
$this->Task->path = '/my/path/';
$this->Task->plugin = 'TestFixture';
$filename = APP . 'Plugin' . DS . 'TestFixture' . DS . 'tests' . DS . 'Fixture' . DS . 'ArticleFixture.php';
$filename = APP . 'Plugin' . DS . 'TestFixture' . DS . 'Test' . DS . 'Fixture' . DS . 'ArticleFixture.php';
//fake plugin path
CakePlugin::load('TestFixture', array('path' => APP . 'Plugin' . DS . 'TestFixture' . DS));