mirror of
https://github.com/wallabag/wallabag.git
synced 2024-10-31 22:28:54 +00:00
28 lines
614 B
PHP
28 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());
|
|
}
|
|
}
|