diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2017-04-05 22:22:16 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2017-04-05 22:22:52 +0200 |
commit | 5e9009ce86a366001616fad5b28cb59dc20ee4df (patch) | |
tree | fc4c88f3405d6f56a1fc27f9af43ab6be4117758 /tests | |
parent | 19122cf66037f86375072ffa60b6a43b54f02f99 (diff) | |
download | wallabag-5e9009ce86a366001616fad5b28cb59dc20ee4df.tar.gz wallabag-5e9009ce86a366001616fad5b28cb59dc20ee4df.tar.zst wallabag-5e9009ce86a366001616fad5b28cb59dc20ee4df.zip |
Added publication date
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php b/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php index 3eb6d47f..d4ebdf3d 100644 --- a/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php +++ b/tests/Wallabag/CoreBundle/Controller/EntryControllerTest.php | |||
@@ -138,6 +138,7 @@ class EntryControllerTest extends WallabagCoreTestCase | |||
138 | $this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content); | 138 | $this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content); |
139 | $this->assertEquals($this->url, $content->getUrl()); | 139 | $this->assertEquals($this->url, $content->getUrl()); |
140 | $this->assertContains('Google', $content->getTitle()); | 140 | $this->assertContains('Google', $content->getTitle()); |
141 | $this->assertEquals('2015-03-28 15:37:39', $content->getPublishedAt()); | ||
141 | } | 142 | } |
142 | 143 | ||
143 | public function testPostNewOkUrlExist() | 144 | public function testPostNewOkUrlExist() |