mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
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:
parent
686f8a45dc
commit
340230b9c9
@ -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);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user