aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Wallabag
diff options
context:
space:
mode:
authorJeremy Benoist <j0k3r@users.noreply.github.com>2016-08-28 15:56:17 +0200
committerGitHub <noreply@github.com>2016-08-28 15:56:16 +0200
commit13d44ca766b1020327f0b9b005dc2e95deb156a1 (patch)
treed21dcb2f718cb9c593ed20d73ca4164ee859f165 /tests/Wallabag
parent8635ab1cd1ae90d7757a59444ef80759a040eccf (diff)
parent0184e09a66dbc400d831ba9cc045924cb16722e9 (diff)
downloadwallabag-13d44ca766b1020327f0b9b005dc2e95deb156a1.tar.gz
wallabag-13d44ca766b1020327f0b9b005dc2e95deb156a1.tar.zst
wallabag-13d44ca766b1020327f0b9b005dc2e95deb156a1.zip
Merge pull request #2243 from wallabag/feature-untagged-entries
Add untagged entries
Diffstat (limited to 'tests/Wallabag')
-rw-r--r--tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php b/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php
index f9ac28c3..a74c17d9 100644
--- a/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php
+++ b/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php
@@ -236,6 +236,16 @@ class EntryControllerTest extends WallabagCoreTestCase
236 $this->assertEquals(200, $client->getResponse()->getStatusCode()); 236 $this->assertEquals(200, $client->getResponse()->getStatusCode());
237 } 237 }
238 238
239 public function testUntagged()
240 {
241 $this->logInAs('admin');
242 $client = $this->getClient();
243
244 $client->request('GET', '/untagged/list');
245
246 $this->assertEquals(200, $client->getResponse()->getStatusCode());
247 }
248
239 public function testStarred() 249 public function testStarred()
240 { 250 {
241 $this->logInAs('admin'); 251 $this->logInAs('admin');