wallabag/src/Wallabag/CoreBundle/Tests/Controller/StaticControllerTest.php

29 lines
640 B
PHP
Raw Normal View History

2015-08-10 06:19:40 +00:00
<?php
namespace Wallabag\CoreBundle\Tests\Controller;
use Wallabag\CoreBundle\Tests\WallabagCoreTestCase;
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());
}
}