]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - tests/Wallabag/ApiBundle/Controller/EntryRestControllerTest.php
Add support for authors
[github/wallabag/wallabag.git] / tests / Wallabag / ApiBundle / Controller / EntryRestControllerTest.php
index 1b0c06d2ec7de95f669d09243f87ca228aeef756..e9ba4634c090568082e692e24a92346b272e31c3 100644 (file)
@@ -345,6 +345,7 @@ class EntryRestControllerTest extends WallabagApiTestCase
             'content' => 'my content',
             'language' => 'de_DE',
             'published_at' => '2016-09-08T11:55:58+0200',
+            'authors' => 'bob,helen',
         ]);
 
         $this->assertEquals(200, $this->client->getResponse()->getStatusCode());
@@ -361,6 +362,9 @@ class EntryRestControllerTest extends WallabagApiTestCase
         $this->assertSame('my content', $content['content']);
         $this->assertSame('de_DE', $content['language']);
         $this->assertSame('2016-09-08T11:55:58+0200', $content['published_at']);
+        $this->assertCount(2, $content['published_by']);
+        $this->assertContains('bob', $content['published_by']);
+        $this->assertContains('helen', $content['published_by']);
     }
 
     public function testPostSameEntry()