Changeset 1809
- Timestamp:
- 10/30/06 15:21:07
- Files:
-
- trunk/plagger/lib/Plagger/Plugin/Publish/Feed.pm (modified) (1 diff)
- trunk/plagger/t/plugins/Publish-Feed/atom1.t (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/plagger/lib/Plagger/Plugin/Publish/Feed.pm
r1741 r1809 68 68 $entry->content($e->body); 69 69 } else { 70 $entry->{entry}->content($e->body );70 $entry->{entry}->content($e->body->utf8); 71 71 } 72 72 } trunk/plagger/t/plugins/Publish-Feed/atom1.t
r1358 r1809 8 8 9 9 test_plugin_deps; 10 plan tests => 2;10 plan tests => 4; 11 11 run_eval_expected; 12 12 … … 34 34 is $feed->version, '1.0'; 35 35 is $feed->title, 'Bulknews::Subtech'; 36 unlike( ($feed->entries)[0]->content->as_xml, qr/CgkJPGRpdiBjbGFz/); 37 file_doesnt_contain($main::output, qr!<content xmlns="http://www.w3.org/2005/Atom">!); 38
