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

29 lines
644 B
PHP
Raw Normal View History

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