MINOR more unit tests around loose hierarchy (from r98509)

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/branches/2.4@99121 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2010-02-16 04:03:02 +00:00 committed by Sam Minnee
parent 686f8a45dc
commit 340230b9c9

View File

@ -106,6 +106,24 @@ class CMSMainTest extends FunctionalTest {
$this->assertTrue($page->getCMSFields(null) instanceof FieldSet);
}
}
function testCanPublishPageWithUnpublishedParentWithStrictHierarchyOff() {
$this->logInWithPermssion('ADMIN');
SiteTree::enforce_strict_hierarchy(true);
$parentPage = $this->objFromFixture('Page','page3');
$childPage = $this->objFromFixture('Page','page1');
$parentPage->doUnpublish();
$childPage->doUnpublish();
$this->assertContains(
'action_publish',
$childPage->getCMSActions()->column('Name'),
'Can publish a page with an unpublished parent with strict hierarchy off'
);
SiteTree::enforce_strict_hierarchy(false);
}
/**