1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-10-05 19:31:02 +00:00
wallabag/src/Wallabag/CoreBundle/Tests/Controller/WallabagRestControllerTest.php
2015-02-11 06:27:04 +01:00

22 lines
No EOL
613 B
PHP

<?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());
}
}