mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
Merge pull request #2599 from open-sausages/pulls/4/remove-broken-resource-dir
BUG Remove broken RESOURCES_DIR test
This commit is contained in:
commit
c6e0c5441a
@ -152,23 +152,14 @@ class SiteTreeTest extends SapphireTest
|
||||
$this->assertEquals($urlSegment, $page->URLSegment);
|
||||
}
|
||||
|
||||
/**
|
||||
* Check that explicitly setting a URL segment to the resources dir will rename it to have a -2 suffix
|
||||
*/
|
||||
public function testExplicitlyUsingResourcesDirForURLSegment()
|
||||
{
|
||||
$page = SiteTree::create(['URLSegment' => RESOURCES_DIR]);
|
||||
$id = $page->write();
|
||||
$page = SiteTree::get()->byID($id);
|
||||
$this->assertSame(RESOURCES_DIR . '-2', $page->URLSegment);
|
||||
}
|
||||
|
||||
/**
|
||||
* For legacy resources dir values ("resources"), check that URLSegments get a -2 appended
|
||||
*/
|
||||
public function testLegacyResourcesDirValuesHaveIncrementedValueAppended()
|
||||
{
|
||||
if (RESOURCES_DIR !== 'resources') {
|
||||
// This test only runs on the CMS build because it doesn't have a `resources-dir` flag on its
|
||||
// composer.json file
|
||||
$this->markTestSkipped('This legacy test requires RESOURCES_DIR to be "resources"');
|
||||
}
|
||||
|
||||
@ -185,6 +176,8 @@ class SiteTreeTest extends SapphireTest
|
||||
public function testDefaultResourcesDirHasLeadingUnderscoreRemovedAndResourcesIsUsed()
|
||||
{
|
||||
if (RESOURCES_DIR === 'resources') {
|
||||
// This test won't runs on the CMS build because it doesn't have a `resources-dir` flag on its
|
||||
// composer.json file. It will run on the recipe-cms build.
|
||||
$this->markTestSkipped('This test requires RESOURCES_DIR to be something other than "resources"');
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user