summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-11-06 10:25:30 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2014-11-06 10:25:30 +0100
commit2a601bc35b26599fb08f4f6a748caee52bedf1a5 (patch)
treedb45cf3a60a98ccbfff66bb1008ff7e4c81d4abf /tests
parentc9f46e2e3caa20d597315cd2fa85b0cce15c4c3b (diff)
enable other dbs for test suite
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