aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Wallabag/ApiBundle/Controller/TaggingRuleRestControllerTest.php
blob: b6477256ebd595b6e6bbedfdee574451b840e61c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

namespace Tests\Wallabag\ApiBundle\Controller;

use Tests\Wallabag\ApiBundle\WallabagApiTestCase;

class TaggingRuleRestControllerTest extends WallabagApiTestCase
{
    public function testExportEntry()
    {
        $this->client->request('GET', '/api/taggingrule/export');
        $this->assertSame(200, $this->client->getResponse()->getStatusCode());
        $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
    }
}