2015-08-10 08:19:40 +02:00
|
|
|
<?php
|
|
|
|
|
2016-06-01 21:27:35 +02:00
|
|
|
namespace Tests\Wallabag\CoreBundle\Controller;
|
2015-08-10 08:19:40 +02:00
|
|
|
|
2016-06-01 21:27:35 +02:00
|
|
|
use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
|
2015-08-10 08:19:40 +02:00
|
|
|
|
|
|
|
class StaticControllerTest extends WallabagCoreTestCase
|
|
|
|
{
|
|
|
|
public function testAbout()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$client->request('GET', '/about');
|
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testHowto()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$client->request('GET', '/howto');
|
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
}
|
|
|
|
}
|