summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/integration/db/ItemMapperTest.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/integration/db/ItemMapperTest.php b/tests/integration/db/ItemMapperTest.php
index 61ea33e47..1ae0d117d 100644
--- a/tests/integration/db/ItemMapperTest.php
+++ b/tests/integration/db/ItemMapperTest.php
@@ -63,6 +63,7 @@ class ItemMapperTest extends NewsIntegrationTest {
$item->setGuid('test');
$item->setFeedId(3);
$item->setUnread();
+ $item->setBody('Döner');
$created = $this->itemMapper->insert($item);
@@ -73,6 +74,7 @@ class ItemMapperTest extends NewsIntegrationTest {
$this->assertEquals($item->getGuidHash(), $fetched->getGuidHash());
$this->assertEquals($item->getFeedId(), $fetched->getFeedId());
$this->assertEquals($item->isRead(), $fetched->isRead());
+ $this->assertEquals('Döner', $fetched->getBody());
}
} \ No newline at end of file