wallabag/tests/Controller/StaticControllerTest.php

29 lines
614 B
PHP
Raw Normal View History

2015-08-10 08:19:40 +02:00
<?php
2024-02-19 01:30:12 +01:00
namespace Tests\Wallabag\Controller;
2015-08-10 08:19:40 +02:00
use Tests\Wallabag\WallabagTestCase;
2015-08-10 08:19:40 +02:00
class StaticControllerTest extends WallabagTestCase
2015-08-10 08:19:40 +02:00
{
public function testAbout()
{
$this->logInAs('admin');
$client = $this->getTestClient();
2015-08-10 08:19:40 +02:00
$client->request('GET', '/about');
2017-07-01 09:52:38 +02:00
$this->assertSame(200, $client->getResponse()->getStatusCode());
2015-08-10 08:19:40 +02:00
}
public function testHowto()
{
$this->logInAs('admin');
$client = $this->getTestClient();
2015-08-10 08:19:40 +02:00
$client->request('GET', '/howto');
2017-07-01 09:52:38 +02:00
$this->assertSame(200, $client->getResponse()->getStatusCode());
2015-08-10 08:19:40 +02:00
}
}