2011-03-18 04:17:04 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2011-03-22 10:47:26 +01:00
|
|
|
* @package cms
|
2011-03-18 04:17:04 +01:00
|
|
|
* @subpackage tests
|
|
|
|
*/
|
|
|
|
class RootURLControllerTest extends SapphireTest {
|
2011-03-30 09:04:31 +02:00
|
|
|
static $fixture_file = 'RootURLControllerTest.yml';
|
2011-03-18 04:17:04 +01:00
|
|
|
|
|
|
|
public function testGetHomepageLink() {
|
|
|
|
$default = $this->objFromFixture('Page', 'home');
|
|
|
|
|
|
|
|
SiteTree::disable_nested_urls();
|
|
|
|
$this->assertEquals('home', RootURLController::get_homepage_link());
|
|
|
|
SiteTree::enable_nested_urls();
|
|
|
|
$this->assertEquals('home', RootURLController::get_homepage_link());
|
|
|
|
}
|
|
|
|
|
2012-04-12 09:23:20 +02:00
|
|
|
}
|