1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-09-10 18:51:02 +00:00

Remove 'content' from API

Waiting to find a good solution to avoid side problem since user can no define the content
This commit is contained in:
Jeremy Benoist 2016-03-04 11:40:48 +01:00
parent 11a452813c
commit fba9e7d44d
2 changed files with 0 additions and 22 deletions

View file

@ -180,22 +180,6 @@ class WallabagRestControllerTest extends WallabagApiTestCase
$this->assertEquals(false, $content['is_starred']);
}
public function testPostEntryWithContent()
{
$this->client->request('POST', '/api/entries.json', array(
'url' => 'http://www.lemonde.fr/idees/article/2016/02/08/preserver-la-liberte-d-expression-sur-les-reseaux-sociaux_4861503_3232.html',
'content' => 'This is a new content for my entry',
));
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
$content = json_decode($this->client->getResponse()->getContent(), true);
$this->assertGreaterThan(0, $content['id']);
$this->assertEquals('http://www.lemonde.fr/idees/article/2016/02/08/preserver-la-liberte-d-expression-sur-les-reseaux-sociaux_4861503_3232.html', $content['url']);
$this->assertEquals('This is a new content for my entry', $content['content']);
}
public function testPatchEntry()
{
$entry = $this->client->getContainer()