소스 검색

[translator] skip the test if orm version is >= 2.3

gedi 13 년 전
부모
커밋
80b687283d
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      tests/Gedmo/Translator/TranslatableTest.php

+ 3 - 0
tests/Gedmo/Translator/TranslatableTest.php

@@ -102,6 +102,9 @@ class TranslatableTest extends BaseTestCaseORM
 
     public function testTranslatableWithCustomProxy()
     {
+        if (\Doctrine\ORM\Version::compare('2.3.0-dev') <= 0) {
+            $this->markTestSkipped('Seems that orm strictly checks the class name in higher version');
+        }
         $person = new PersonCustom();
         $person->setName('Jen');
         $person->translate('ru_RU')->setName('Женя');