1
0
mirror of synced 2024-12-13 06:46:03 +03:00

[2.0] DC-169 - Skip all UpdateSchemaTests

This commit is contained in:
beberlei 2009-11-30 23:14:48 +00:00
parent e3314dae16
commit 4d5a6ac7bc

View File

@ -8,6 +8,11 @@ require_once __DIR__ . '/../../../TestInit.php';
abstract class UpdateSchemaTestCase extends \Doctrine\Tests\OrmTestCase abstract class UpdateSchemaTestCase extends \Doctrine\Tests\OrmTestCase
{ {
public function setUp()
{
$this->markTestSkipped('Update Schema Tool stuff wont be needed anymore soon!');
}
protected function _doTestAddField() protected function _doTestAddField()
{ {
$this->_initSchemaTool("Cms"); $this->_initSchemaTool("Cms");
@ -283,4 +288,9 @@ class UpdateSchemaMock extends \Doctrine\DBAL\Schema\AbstractSchemaManager
{ {
return $this->_fixtureData[$tableName]; return $this->_fixtureData[$tableName];
} }
protected function _getPortableTableColumnDefinition($column)
{
return $column;
}
} }