Files
wallabag/tests/Controller/StaticControllerTest.php

29 lines
612 B
PHP
Raw Normal View History

2015-08-10 08:19:40 +02:00
<?php
namespace App\Tests\Controller;
2015-08-10 08:19:40 +02:00
use App\Tests\WallabagCoreTestCase;
2015-08-10 08:19:40 +02:00
class StaticControllerTest extends WallabagCoreTestCase
{
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
}
}