Fix mixing and matching of RSS and Atom
[catagits/XML-Feed.git] / t / 04-splice.t
diff --git a/t/04-splice.t b/t/04-splice.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');