]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Add tests for untagged entries
authorNicolas LÅ“uillet <nicolas@loeuillet.org>
Fri, 26 Aug 2016 19:01:56 +0000 (21:01 +0200)
committerJeremy Benoist <jeremy.benoist@gmail.com>
Sun, 28 Aug 2016 12:44:00 +0000 (14:44 +0200)
tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php

index f9ac28c3ac3fc125bc324d8e189db3283ac1e7b5..a74c17d9549372324632edbf5910765c9d6a8087 100644 (file)
@@ -236,6 +236,16 @@ class EntryControllerTest extends WallabagCoreTestCase
         $this->assertEquals(200, $client->getResponse()->getStatusCode());
     }
 
+    public function testUntagged()
+    {
+        $this->logInAs('admin');
+        $client = $this->getClient();
+
+        $client->request('GET', '/untagged/list');
+
+        $this->assertEquals(200, $client->getResponse()->getStatusCode());
+    }
+
     public function testStarred()
     {
         $this->logInAs('admin');