mirror of
https://github.com/wallabag/wallabag.git
synced 2025-07-27 17:28:39 +00:00
22 lines
613 B
PHP
22 lines
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());
|
||
|
}
|
||
|
}
|