wallabag/tests/Controller/StaticControllerTest.php
2024-02-24 20:24:51 +01:00

29 lines
614 B
PHP

<?php
namespace Tests\Wallabag\Controller;
use Tests\Wallabag\WallabagTestCase;
class StaticControllerTest extends WallabagTestCase
{
public function testAbout()
{
$this->logInAs('admin');
$client = $this->getTestClient();
$client->request('GET', '/about');
$this->assertSame(200, $client->getResponse()->getStatusCode());
}
public function testHowto()
{
$this->logInAs('admin');
$client = $this->getTestClient();
$client->request('GET', '/howto');
$this->assertSame(200, $client->getResponse()->getStatusCode());
}
}