Misnamed
Simon Wistow [Thu, 23 Oct 2008 00:45:12 +0000 (00:45 +0000)]
t/04-spice-atom.t [deleted file]

diff --git a/t/04-spice-atom.t b/t/04-spice-atom.t
deleted file mode 100644 (file)
index 21f7a5e..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-# $Id: 04-splice.t 1958 2006-08-14 05:31:27Z btrott $
-
-use strict;
-use Test::More tests => 3;
-use XML::Feed;
-
-my $feed = XML::Feed->new('Atom');
-
-my $other = XML::Feed->parse('t/samples/atom.xml')->convert('Atom');
-$feed->splice($other);
-is(scalar $feed->entries, 2, '2 entries in the feed after splicing');
-
-$feed->splice($other);
-is(scalar $feed->entries, 2, 'Still 2 entries after splicing again');
-
-$other = XML::Feed->parse('t/samples/rss10.xml')->convert('Atom');
-$feed->splice($other);
-is(scalar $feed->entries, 4, 'Now 4 entries after splicing in RSS 1.0 feed');