]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php
Tests are working again
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Tests / Controller / EntryControllerTest.php
CommitLineData
93fd4692
NL
1<?php
2
ad4d1caa 3namespace Wallabag\CoreBundle\Tests\Controller;
93fd4692
NL
4
5use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
6
9d50517c 7class EntryControllerTest extends WebTestCase
93fd4692
NL
8{
9 public function testIndex()
10 {
11 $client = static::createClient();
12
aa6e27cf 13 $crawler = $client->request('GET', '/new');
93fd4692
NL
14
15 $this->assertEquals(200, $client->getResponse()->getStatusCode());
93fd4692
NL
16 }
17}