Fixed broken date test.
Dave Cross [Mon, 12 Mar 2012 19:39:46 +0000 (19:39 +0000)]
t/07-atom10-create.t

index 9eee0b2..ec107a2 100644 (file)
@@ -1,8 +1,6 @@
 use strict;
 use Test::More;
 
-plan tests => 17;
-
 use XML::Feed;
 use DateTime;
 
@@ -13,7 +11,7 @@ $feed->title("foo");
 $feed->description("Atom 1.0 feed");
 $feed->link("http://example.org/");
 $feed->id("tag:cpan.org;xml-feed-atom");
-$feed->updated($now);
+$feed->modified($now);
 
 my $entry = XML::Feed::Entry->new('Atom');
 $entry->title("1st Entry");
@@ -21,7 +19,7 @@ $entry->link("http://example.org/");
 $entry->category("blah");
 $entry->content("<p>Hello world.</p>");
 $entry->id("tag:cpan.org;xml-feed-atom-entry");
-$entry->updated($now);
+$entry->modified($now);
 
 $feed->add_entry($entry);
 
@@ -37,7 +35,7 @@ is $feed->title, "foo";
 is $feed->description, "Atom 1.0 feed";
 is $feed->link, "http://example.org/";
 is $feed->id, "tag:cpan.org;xml-feed-atom";
-is "".$feed->updated, "".$now;
+is $feed->modified->iso8601, $now->iso8601;
 
 my @entries = $feed->entries;
 is @entries, 1;
@@ -50,6 +48,6 @@ is $entry->content->type, 'text/html';
 like $entry->content->body, qr!\s*<p>Hello world.</p>\s*!s;
 
 is $entry->id, "tag:cpan.org;xml-feed-atom-entry";
-is "".$entry->updated, "".$now;
-
+is $entry->modified->iso8601, $now->iso8601;
 
+done_testing();