MINOR Added test case for Hierarchy::getDescendantIDList() which also tests Hierarchy::loadDescendantIDListInto()

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@98369 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Sean Harvey 2010-02-08 02:09:35 +00:00 committed by Sam Minnee
parent cb4ec2b3d2
commit be919f2898

View File

@ -88,5 +88,15 @@ class HierarchyTest extends SapphireTest {
'numChildren() caching can be disabled by flushCache()'
);
}
}
function testLoadDescendantIDListInto() {
$page2 = $this->objFromFixture('Page', 'page2');
$idList = $page2->getDescendantIDList();
$page2a = $this->objFromFixture('Page', 'page2a');
$page2b = $this->objFromFixture('Page', 'page2b');
$this->assertContains($page2a->ID, $idList, 'Page 2a is a descendant of Page 2');
$this->assertContains($page2b->ID, $idList, 'Page 2b is a descendant of Page 2');
$this->assertEquals(2, count($idList), 'There are 2 descendants of Page 2');
}
}