Update tests
[catagits/XML-Feed.git] / t / 00-compile.t
index b555c62..c1c7d58 100644 (file)
@@ -1,11 +1,9 @@
-# $Id: 00-compile.t 922 2004-05-29 18:19:50Z btrott $
+# $Id: 00-compile.t 1867 2005-08-09 20:41:15Z btrott $
 
-my $loaded;
-BEGIN { print "1..1\n" }
-use XML::Feed;
-use XML::Feed::Entry;
-use XML::Feed::RSS;
-use XML::Feed::Atom;
-$loaded++;
-print "ok 1\n";
-END { print "not ok 1\n" unless $loaded }
+use strict;
+use Test::More tests => 4;
+
+use_ok('XML::Feed');
+use_ok('XML::Feed::Entry');
+use_ok('XML::Feed::Format::RSS');
+use_ok('XML::Feed::Format::Atom');