Ticket 4108

- updated DboSourceTest::testFieldsCacheKeyWithSchemanameChange() to skip for Postgres and Sqlserver
This commit is contained in:
Andy Hobbs 2013-09-27 13:03:32 +01:00
parent 0f7d6a90a1
commit 56f1c9b8b5

View file

@ -951,6 +951,9 @@ class DboSourceTest extends CakeTestCase {
* @return void
*/
public function testFieldsCacheKeyWithSchemanameChange() {
if ($this->db instanceof Postgres || $this->db instanceof Sqlserver) {
$this->markTestSkipped('Cannot run this test with SqlServer or Postgres');
}
Cache::delete('method_cache', '_cake_core_');
DboSource::$methodCache = array();
$Article = ClassRegistry::init('Article');