diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php b/tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php index fd72b8f2..65b65290 100644 --- a/tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php +++ b/tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php | |||
@@ -804,4 +804,11 @@ class WallabagRestControllerTest extends WallabagApiTestCase | |||
804 | 804 | ||
805 | $this->assertEquals(false, $content['exists']); | 805 | $this->assertEquals(false, $content['exists']); |
806 | } | 806 | } |
807 | |||
808 | public function testGetEntriesExistsWithNoUrl() | ||
809 | { | ||
810 | $this->client->request('GET', '/api/entries/exists?url='); | ||
811 | |||
812 | $this->assertEquals(403, $this->client->getResponse()->getStatusCode()); | ||
813 | } | ||
807 | } | 814 | } |