1
0
mirror of https://github.com/moparisthebest/wallabag synced 2025-01-06 19:28:00 -05:00

[add] test for mark as unread

This commit is contained in:
Nicolas Lœuillet 2014-01-13 21:43:26 +01:00
parent f24eb4fda6
commit 5f1b9885b4

View File

@ -106,6 +106,36 @@ class ApiTest extends PocheWebTestCase
}
public function testMarkAsUnread()
{
//Load some entries
Fixtures::loadEntries($this->app['db']);
$client = $this->createClient();
$crawler = $client->request(
'GET',
'/api/mark-unread',
array(),
array(),
array('CONTENT_TYPE' => 'application/json'),
'{"id":"1"}'
);
$this->assertEquals($client->getResponse()->getStatusCode(), 201);
// Assert that the "Content-Type" header is "application/json"
$this->assertTrue(
$client->getResponse()->headers->contains(
'Content-Type',
'application/json'
)
);
$this->assertEquals('1', $client->getResponse()->getContent());
}
public function testPostEntries()
{