mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 06:05:56 +00: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
@ -108,6 +108,24 @@ class CMSMainTest extends FunctionalTest {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test that a draft-deleted page can still be opened in the CMS
|
* Test that a draft-deleted page can still be opened in the CMS
|
||||||
*/
|
*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user