Add tests for untagged entries

This commit is contained in:
Nicolas Lœuillet 2016-08-26 21:01:56 +02:00 committed by Jeremy Benoist
parent b6520f0b15
commit d5d1612153
No known key found for this signature in database
GPG key ID: BCA73962457ACC3C

View file

@ -236,6 +236,16 @@ class EntryControllerTest extends WallabagCoreTestCase
$this->assertEquals(200, $client->getResponse()->getStatusCode());
}
public function testUntagged()
{
$this->logInAs('admin');
$client = $this->getClient();
$client->request('GET', '/untagged/list');
$this->assertEquals(200, $client->getResponse()->getStatusCode());
}
public function testStarred()
{
$this->logInAs('admin');