Fix description field of the Story RSS feed. Fixes bug #11112

This commit is contained in:
Colin Kuskie 2009-10-11 19:03:55 -07:00
parent 35efdfd5c5
commit 08f6bd8b58
3 changed files with 4 additions and 2 deletions

View file

@ -122,6 +122,7 @@ $story = $archive->addChild({
title => 'Story 1',
subtitle => 'The story of a CMS',
byline => 'JT Smith',
story => 'WebGUI was originally called Web Done Right.',
});
isa_ok($story, 'WebGUI::Asset::Story', 'Created a Story asset');
@ -276,7 +277,7 @@ cmp_deeply(
$story->getRssData,
{
title => 'Story 1',
description => 'The story of a CMS',
description => 'WebGUI was originally called Web Done Right.',
'link' => re('story-1$'),
author => 'JT Smith',
date => $story->get('lastModified'),