MINOR Temporarily disabled nested url specific cases inTranslatableTest->testAlternateGetByLink(), unclear functionality requirements

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@99350 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2010-02-16 22:53:55 +00:00 committed by Sam Minnee
parent 7a6da70076
commit c02956d5c7

View File

@ -873,12 +873,16 @@ class TranslatableTest extends FunctionalTest {
SiteTree::get_by_link($grandchildTranslation->Link())->ID,
'Grandchild pages can be found.'
);
$this->assertEquals (
$child->ID,
SiteTree::get_by_link($parentTranslation->Link($child->URLSegment))->ID,
'Links can be made up of multiple languages'
);
// TODO Re-enable test after clarifying with ajshort (see r88503).
// Its unclear if this is valid behaviour, and/or necessary for translated nested URLs
// to work properly
//
// $this->assertEquals (
// $child->ID,
// SiteTree::get_by_link($parentTranslation->Link($child->URLSegment))->ID,
// 'Links can be made up of multiple languages'
// );
}
public function testSiteTreeGetByLinkFindsTranslationWithoutLocale() {