|
From: <ik...@us...> - 2009-08-26 21:38:16
|
Revision: 37
http://webfetch.svn.sourceforge.net/webfetch/?rev=37&view=rev
Author: ikluft
Date: 2009-08-26 21:37:57 +0000 (Wed, 26 Aug 2009)
Log Message:
-----------
clean up tests
Modified Paths:
--------------
branches/v0.11/MANIFEST
branches/v0.11/t/00-load.t
branches/v0.11/t/pod-coverage.t
Modified: branches/v0.11/MANIFEST
===================================================================
--- branches/v0.11/MANIFEST 2009-08-26 21:28:38 UTC (rev 36)
+++ branches/v0.11/MANIFEST 2009-08-26 21:37:57 UTC (rev 37)
@@ -6,9 +6,11 @@
Makefile.PL
test.pl
lib/WebFetch.pm
-lib/WebFetch/General.pm
-lib/WebFetch/ListSubs.pm
-lib/WebFetch/PerlStruct.pm
-lib/WebFetch/SiteNews.pm
+lib/WebFetch/Input/Atom.pm
+lib/WebFetch/Input/PerlStruct.pm
+lib/WebFetch/Input/RSS.pm
+lib/WebFetch/Input/SiteNews.pm
+lib/WebFetch/Output/Dump.pm
+lib/WebFetch/Output/TT.pm
misc/module-list
misc/webfetch-pb.gif
Modified: branches/v0.11/t/00-load.t
===================================================================
--- branches/v0.11/t/00-load.t 2009-08-26 21:28:38 UTC (rev 36)
+++ branches/v0.11/t/00-load.t 2009-08-26 21:37:57 UTC (rev 37)
@@ -1,13 +1,15 @@
#!perl -T
-use Test::More tests => 5;
+use Test::More tests => 7;
BEGIN {
use_ok( 'WebFetch' );
- use_ok( 'WebFetch::General' );
- use_ok( 'WebFetch::ListSubs' );
- use_ok( 'WebFetch::PerlStruct' );
- use_ok( 'WebFetch::SiteNews' );
+ use_ok( 'WebFetch::Input::Atom' );
+ use_ok( 'WebFetch::Input::PerlStruct' );
+ use_ok( 'WebFetch::Input::RSS' );
+ use_ok( 'WebFetch::Input::SiteNews' );
+ use_ok( 'WebFetch::Output::Dump' );
+ use_ok( 'WebFetch::Output::TT' );
}
diag( "Testing WebFetch $WebFetch::VERSION, Perl $], $^X" );
Modified: branches/v0.11/t/pod-coverage.t
===================================================================
--- branches/v0.11/t/pod-coverage.t 2009-08-26 21:28:38 UTC (rev 36)
+++ branches/v0.11/t/pod-coverage.t 2009-08-26 21:37:57 UTC (rev 37)
@@ -1,6 +1,6 @@
use strict;
use warnings;
-use Test::More skip_all => "not ready for coverage test - modernization in progress";
+use Test::More skip_all => "to-do";
# Ensure a recent version of Test::Pod::Coverage
my $min_tpc = 1.08;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|