X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F00-compile.t;h=d8a7bbadb3e33fcf078fd0fd7d644a7f954ad2fb;hb=1a4ab1c66c5641c2eaf35aee7c7e2026fe61bf5b;hp=b555c624b327627fbcb3853baaa090ba522303af;hpb=fe71566dc49fb1adac7816ecb10aa3574a21cc08;p=catagits%2FXML-Feed.git diff --git a/t/00-compile.t b/t/00-compile.t index b555c62..d8a7bba 100644 --- a/t/00-compile.t +++ b/t/00-compile.t @@ -1,11 +1,9 @@ -# $Id: 00-compile.t 922 2004-05-29 18:19:50Z btrott $ +# $Id$ -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');