16 lines
268 B
PHP
16 lines
268 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Shimmie2;
|
||
|
|
||
|
class SystemTest extends ShimmiePHPUnitTestCase
|
||
|
{
|
||
|
public function testView()
|
||
|
{
|
||
|
global $page;
|
||
|
$this->get_page("system");
|
||
|
$this->assertEquals(PageMode::REDIRECT, $page->mode);
|
||
|
}
|
||
|
}
|