mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
BUG Remove broken RESOURCES_DIR test
This commit is contained in:
parent
726e1111e7
commit
aaf4fb4d7a
@ -152,23 +152,14 @@ class SiteTreeTest extends SapphireTest
|
|||||||
$this->assertEquals($urlSegment, $page->URLSegment);
|
$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
|
* For legacy resources dir values ("resources"), check that URLSegments get a -2 appended
|
||||||
*/
|
*/
|
||||||
public function testLegacyResourcesDirValuesHaveIncrementedValueAppended()
|
public function testLegacyResourcesDirValuesHaveIncrementedValueAppended()
|
||||||
{
|
{
|
||||||
if (RESOURCES_DIR !== 'resources') {
|
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"');
|
$this->markTestSkipped('This legacy test requires RESOURCES_DIR to be "resources"');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -185,6 +176,8 @@ class SiteTreeTest extends SapphireTest
|
|||||||
public function testDefaultResourcesDirHasLeadingUnderscoreRemovedAndResourcesIsUsed()
|
public function testDefaultResourcesDirHasLeadingUnderscoreRemovedAndResourcesIsUsed()
|
||||||
{
|
{
|
||||||
if (RESOURCES_DIR === 'resources') {
|
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"');
|
$this->markTestSkipped('This test requires RESOURCES_DIR to be something other than "resources"');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user