diff options
-rw-r--r-- | tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php b/tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php index e582e5f9..9b5760bc 100644 --- a/tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php +++ b/tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php | |||
@@ -695,4 +695,15 @@ class WallabagRestControllerTest extends WallabagApiTestCase | |||
695 | 695 | ||
696 | $this->assertEquals(true, $content['exists']); | 696 | $this->assertEquals(true, $content['exists']); |
697 | } | 697 | } |
698 | |||
699 | public function testGetEntriesExistsWhichDoesNotExists() | ||
700 | { | ||
701 | $this->client->request('GET', '/api/entries/exists?url=http://google.com/entry2'); | ||
702 | |||
703 | $this->assertEquals(200, $this->client->getResponse()->getStatusCode()); | ||
704 | |||
705 | $content = json_decode($this->client->getResponse()->getContent(), true); | ||
706 | |||
707 | $this->assertEquals(false, $content['exists']); | ||
708 | } | ||
698 | } | 709 | } |