diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-03-27 23:32:55 +0200 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-03-27 23:58:37 +0200 |
commit | 8f336fda649c064cabfa692793334067ece780f9 (patch) | |
tree | 62702d9c78391031f810bdc78475d04c5f6807c0 /src/Wallabag/ImportBundle/Tests/Controller | |
parent | 4d0ec0e72108ff47952906e5d968a7c3eb0a76f9 (diff) | |
download | wallabag-8f336fda649c064cabfa692793334067ece780f9.tar.gz wallabag-8f336fda649c064cabfa692793334067ece780f9.tar.zst wallabag-8f336fda649c064cabfa692793334067ece780f9.zip |
Tags were not imported in wallabag v2 import
Also, simplify exportAs matching format
Diffstat (limited to 'src/Wallabag/ImportBundle/Tests/Controller')
-rw-r--r-- | src/Wallabag/ImportBundle/Tests/Controller/WallabagV2ControllerTest.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Wallabag/ImportBundle/Tests/Controller/WallabagV2ControllerTest.php b/src/Wallabag/ImportBundle/Tests/Controller/WallabagV2ControllerTest.php index bcbd6305..490f9ede 100644 --- a/src/Wallabag/ImportBundle/Tests/Controller/WallabagV2ControllerTest.php +++ b/src/Wallabag/ImportBundle/Tests/Controller/WallabagV2ControllerTest.php | |||
@@ -53,6 +53,7 @@ class WallabagV2ControllerTest extends WallabagCoreTestCase | |||
53 | $this->assertEmpty($content->getMimetype()); | 53 | $this->assertEmpty($content->getMimetype()); |
54 | $this->assertEmpty($content->getPreviewPicture()); | 54 | $this->assertEmpty($content->getPreviewPicture()); |
55 | $this->assertEmpty($content->getLanguage()); | 55 | $this->assertEmpty($content->getLanguage()); |
56 | $this->assertEquals(0, count($content->getTags())); | ||
56 | 57 | ||
57 | $content = $client->getContainer() | 58 | $content = $client->getContainer() |
58 | ->get('doctrine.orm.entity_manager') | 59 | ->get('doctrine.orm.entity_manager') |
@@ -65,6 +66,7 @@ class WallabagV2ControllerTest extends WallabagCoreTestCase | |||
65 | $this->assertNotEmpty($content->getMimetype()); | 66 | $this->assertNotEmpty($content->getMimetype()); |
66 | $this->assertNotEmpty($content->getPreviewPicture()); | 67 | $this->assertNotEmpty($content->getPreviewPicture()); |
67 | $this->assertNotEmpty($content->getLanguage()); | 68 | $this->assertNotEmpty($content->getLanguage()); |
69 | $this->assertEquals(2, count($content->getTags())); | ||
68 | } | 70 | } |
69 | 71 | ||
70 | public function testImportWallabagWithEmptyFile() | 72 | public function testImportWallabagWithEmptyFile() |