Merge branch '2.0' of github.com:cakephp/cakephp into 2.0

This commit is contained in:
Jose Lorenzo Rodriguez 2011-09-03 18:08:16 -04:30
commit 93d6cd4ad6

View file

@ -37,6 +37,7 @@ class ExtractTaskTest extends CakeTestCase {
* @return void * @return void
*/ */
public function setUp() { public function setUp() {
parent::setUp();
$out = $this->getMock('ConsoleOutput', array(), array(), '', false); $out = $this->getMock('ConsoleOutput', array(), array(), '', false);
$in = $this->getMock('ConsoleInput', array(), array(), '', false); $in = $this->getMock('ConsoleInput', array(), array(), '', false);
@ -60,7 +61,6 @@ class ExtractTaskTest extends CakeTestCase {
$Folder = new Folder($this->path); $Folder = new Folder($this->path);
$Folder->delete(); $Folder->delete();
App::build();
CakePlugin::unload(); CakePlugin::unload();
} }