Browse Source

Fixing the path used to create fixtures.

Renan Gonçalves 15 years ago
parent
commit
d0af5c78d5

+ 2 - 2
lib/Cake/Console/Command/Task/FixtureTask.php

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

+ 2 - 2
lib/Cake/Test/Case/Console/Command/Task/FixtureTaskTest.php

@@ -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));