diff options
author | Francois Gravelaine <francois@obtao.com> | 2015-07-27 23:20:32 +0200 |
---|---|---|
committer | Francois Gravelaine <francois@obtao.com> | 2015-07-28 23:23:49 +0200 |
commit | 9fb6ac830fa669beef1dd11070421262c073192c (patch) | |
tree | b0b1da23086cba171d134946092f43cd31cd1e62 /src/Wallabag/CoreBundle/Tests | |
parent | 9b9b05008a96a45bbf6da4c0c1c1b1244b83c6af (diff) | |
download | wallabag-9fb6ac830fa669beef1dd11070421262c073192c.tar.gz wallabag-9fb6ac830fa669beef1dd11070421262c073192c.tar.zst wallabag-9fb6ac830fa669beef1dd11070421262c073192c.zip |
Adds pagerfanta paginator everywhere, modifies article routing. Change API for is_starred and is_archived
Diffstat (limited to 'src/Wallabag/CoreBundle/Tests')
-rw-r--r-- | src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php b/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php index 904e2a5c..2cd50130 100644 --- a/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php +++ b/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php | |||
@@ -78,7 +78,7 @@ class EntryControllerTest extends WallabagCoreTestCase | |||
78 | $this->logInAs('admin'); | 78 | $this->logInAs('admin'); |
79 | $client = $this->getClient(); | 79 | $client = $this->getClient(); |
80 | 80 | ||
81 | $client->request('GET', '/archive'); | 81 | $client->request('GET', '/archive/list'); |
82 | 82 | ||
83 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | 83 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); |
84 | } | 84 | } |
@@ -88,7 +88,7 @@ class EntryControllerTest extends WallabagCoreTestCase | |||
88 | $this->logInAs('admin'); | 88 | $this->logInAs('admin'); |
89 | $client = $this->getClient(); | 89 | $client = $this->getClient(); |
90 | 90 | ||
91 | $client->request('GET', '/starred'); | 91 | $client->request('GET', '/starred/list'); |
92 | 92 | ||
93 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | 93 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); |
94 | } | 94 | } |