Test for GET on empty database

This commit is contained in:
Nicolas Lœuillet 2015-02-06 18:02:12 +01:00
parent f59f45d740
commit 68c6f1bd7f

View file

@ -0,0 +1,22 @@
<?php
namespace Wallabag\CoreBundle\Tests\Controller;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
class WallabagRestControllerTest extends WebTestCase
{
public function testEmptyGetEntries() {
$client = $this->createClient();
$client->request('GET', '/api/entries');
$this->assertTrue($client->getResponse()->isOk());
$this->assertTrue(
$client->getResponse()->headers->contains(
'Content-Type',
'application/json'
)
);
$this->assertEquals('[]', $client->getResponse()->getContent());
}
}