2011-03-18 16:17:04 +13:00
|
|
|
<?php
|
|
|
|
/**
|
2011-03-22 22:47:26 +13:00
|
|
|
* @package cms
|
2011-03-18 16:17:04 +13:00
|
|
|
* @subpackage tests
|
|
|
|
*/
|
|
|
|
class RootURLControllerTest extends SapphireTest {
|
2011-03-30 20:04:31 +13:00
|
|
|
static $fixture_file = 'RootURLControllerTest.yml';
|
2011-03-18 16:17:04 +13: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 19:23:20 +12:00
|
|
|
}
|