Fixing some errors on SchemaShellTest

This commit is contained in:
José Lorenzo Rodríguez Urdaneta 2010-07-07 23:14:12 -04:30
parent da9d1c6b06
commit 38d8e03363

View file

@ -283,7 +283,7 @@ class SchemaShellTest extends CakeTestCase {
$this->Shell->Schema->expects($this->at(0))->method('write')->will($this->returnValue(true)); $this->Shell->Schema->expects($this->at(0))->method('write')->will($this->returnValue(true));
$this->Shell->Schema->expects($this->at(1))->method('read'); $this->Shell->Schema->expects($this->at(1))->method('read');
$this->Shell->Schema->expects($this->at(1))->method('write')->with(array('schema data', 'file' => 'schema_1.php')); $this->Shell->Schema->expects($this->at(1))->method('write')->with(array('schema data', 'file' => 'schema_0.php'));
$this->Shell->generate(); $this->Shell->generate();
} }
@ -406,7 +406,7 @@ class SchemaShellTest extends CakeTestCase {
$this->Shell->expects($this->any())->method('in')->will($this->returnValue('y')); $this->Shell->expects($this->any())->method('in')->will($this->returnValue('y'));
$this->Shell->create(); $this->Shell->create();
$db =& ConnectionManager::getDataSource('test_suite'); $db =& ConnectionManager::getDataSource('test');
$sources = $db->listSources(); $sources = $db->listSources();
$this->assertTrue(in_array($db->config['prefix'] . 'acos', $sources)); $this->assertTrue(in_array($db->config['prefix'] . 'acos', $sources));
$this->assertFalse(in_array($db->config['prefix'] . 'aros', $sources)); $this->assertFalse(in_array($db->config['prefix'] . 'aros', $sources));