wallabag/src/Wallabag/CoreBundle/Tests/Controller/TagControllerTest.php

19 lines
403 B
PHP
Raw Normal View History

2015-08-07 18:29:03 +00:00
<?php
namespace Wallabag\CoreBundle\Tests\Controller;
use Wallabag\CoreBundle\Tests\WallabagCoreTestCase;
class TagControllerTest extends WallabagCoreTestCase
{
public function testList()
{
$this->logInAs('admin');
$client = $this->getClient();
$client->request('GET', '/tag/list');
$this->assertEquals(200, $client->getResponse()->getStatusCode());
}
}