silverstripe-cms/tests/controller/RootURLControllerTest.php
2016-03-09 10:28:45 +13:00

19 lines
510 B
PHP

<?php
/**
* @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('SiteTree', 'nested_urls', true);
$this->assertEquals('home', RootURLController::get_homepage_link());
}
}