aboutsummaryrefslogblamecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Tests/Controller/WallabagRestControllerTest.php
blob: 0949b92d9ca505504612bbadbfc11d8c38a105a9 (plain) (tree)





















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