Fixed tests
[catagits/XML-Feed.git] / t / 05-atom10-link.t
CommitLineData
4679cf3f 1use strict;
2use XML::Feed;
3
4use Test::More;
5plan tests => 3;
6
7my $feed = XML::Feed->parse("t/samples/atom-10-example.xml");
8is $feed->title, 'Example Feed';
9is $feed->link, 'http://example.org/', "link without rel";
10
11my $e = ($feed->entries)[0];
12ok $e->link, 'entry link without rel';
13