wallabag/tests/Wallabag/CoreBundle/Controller/StaticControllerTest.php

29 lines
636 B
PHP
Raw Normal View History

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');
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->getClient();
$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
}
}