mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
22 lines
626 B
PHP
22 lines
626 B
PHP
<?php
|
|
|
|
use SilverStripe\CMS\Model\SiteTree;
|
|
use SilverStripe\CMS\Controllers\RootURLController;
|
|
/**
|
|
* @package cms
|
|
* @subpackage tests
|
|
*/
|
|
class RootURLControllerTest extends SapphireTest {
|
|
protected static $fixture_file = 'RootURLControllerTest.yml';
|
|
|
|
public function testGetHomepageLink() {
|
|
$default = $this->objFromFixture('Page', 'home');
|
|
|
|
SiteTree::config()->nested_urls = false;
|
|
$this->assertEquals('home', RootURLController::get_homepage_link());
|
|
Config::inst()->update('SilverStripe\\CMS\\Model\\SiteTree', 'nested_urls', true);
|
|
$this->assertEquals('home', RootURLController::get_homepage_link());
|
|
}
|
|
|
|
}
|