mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 09:06:17 +00:00
Removing dead code
This commit is contained in:
parent
ad456bd479
commit
1f6c5fbc87
1 changed files with 0 additions and 6 deletions
|
@ -356,10 +356,7 @@ class CakeTestFixtureTest extends CakeTestCase {
|
|||
* @return void
|
||||
*/
|
||||
function testImportWithRecords() {
|
||||
|
||||
$defaultDb = ConnectionManager::getDataSource('default');
|
||||
$testSuiteDb = ConnectionManager::getDataSource('test');
|
||||
$defaultConfig = $defaultDb->config;
|
||||
$testSuiteConfig = $testSuiteDb->config;
|
||||
ConnectionManager::create('new_test_suite', array_merge($testSuiteConfig, array('prefix' => 'new_' . $testSuiteConfig['prefix'])));
|
||||
$newTestSuiteDb = ConnectionManager::getDataSource('new_test_suite');
|
||||
|
@ -368,7 +365,6 @@ class CakeTestFixtureTest extends CakeTestCase {
|
|||
$Source->create($newTestSuiteDb);
|
||||
$Source->insert($newTestSuiteDb);
|
||||
|
||||
$defaultDb->config = $newTestSuiteDb->config;
|
||||
|
||||
$Fixture = new CakeTestFixtureDefaultImportFixture();
|
||||
$Fixture->fields = $Fixture->records = null;
|
||||
|
@ -380,8 +376,6 @@ class CakeTestFixtureTest extends CakeTestCase {
|
|||
$this->assertFalse(empty($Fixture->records[0]), 'No records loaded on importing fixture.');
|
||||
$this->assertTrue(isset($Fixture->records[0]['name']), 'No name loaded for first record');
|
||||
|
||||
$defaultDb->config = $defaultConfig;
|
||||
|
||||
$Source->drop($newTestSuiteDb);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue