[Bps-public-commit] r15721 - in Test-Chimps/branches/modern-tap: .

alexmv at bestpractical.com alexmv at bestpractical.com
Wed Sep 3 14:46:41 EDT 2008


Author: alexmv
Date: Wed Sep  3 14:46:39 2008
New Revision: 15721

Modified:
   Test-Chimps/branches/modern-tap/Makefile.PL
   Test-Chimps/branches/modern-tap/t/05-report-basic.t
   Test-Chimps/branches/modern-tap/t/10-server-basic.t
   Test-Chimps/branches/modern-tap/t/15-lister-basic.t

Log:
 * Now passing tests

Modified: Test-Chimps/branches/modern-tap/Makefile.PL
==============================================================================
--- Test-Chimps/branches/modern-tap/Makefile.PL	(original)
+++ Test-Chimps/branches/modern-tap/Makefile.PL	Wed Sep  3 14:46:39 2008
@@ -9,14 +9,14 @@
 requires('Class::Accessor');
 requires('DateTime');
 requires('HTML::Mason');
+requires('TAP::Formatter::HTML');
+requires('TAP::Harness::Archive');
 requires('Jifty::DBI::Collection');
 requires('Jifty::DBI::Handle');
 requires('Jifty::DBI::Record');
 requires('Jifty::DBI::Schema');
 requires('Jifty::DBI::SchemaGenerator');
 requires('Params::Validate');
-requires('Test::TAP::HTMLMatrix');
-requires('Test::TAP::Model::Visual');
 requires('YAML::Syck');
 
 build_requires('Test::Dependencies');

Modified: Test-Chimps/branches/modern-tap/t/05-report-basic.t
==============================================================================
--- Test-Chimps/branches/modern-tap/t/05-report-basic.t	(original)
+++ Test-Chimps/branches/modern-tap/t/05-report-basic.t	Wed Sep  3 14:46:39 2008
@@ -1,4 +1,4 @@
-#!perl -T
+#!perl
 
 use Test::More tests => 3;
 
@@ -6,8 +6,6 @@
   use_ok( 'Test::Chimps::Report' );
 }
 
-use Test::TAP::Model::Visual;
-
 my $r = Test::Chimps::Report->new();
 ok($r, "the report object is defined");
 isa_ok($r, 'Test::Chimps::Report', "and it's of the correct type");

Modified: Test-Chimps/branches/modern-tap/t/10-server-basic.t
==============================================================================
--- Test-Chimps/branches/modern-tap/t/10-server-basic.t	(original)
+++ Test-Chimps/branches/modern-tap/t/10-server-basic.t	Wed Sep  3 14:46:39 2008
@@ -1,4 +1,4 @@
-#!perl -T
+#!perl
 
 use Test::More tests => 3;
 
@@ -10,7 +10,7 @@
   use_ok('Test::Chimps::Server');
 }
 
-my $s = Test::Chimps::Server->new(base_dir => 't-data/chimps-home');
+my $s = Test::Chimps::Server->new(base_dir => 't-data/chimps-home', database => 't-data/chimps-home/chimpsdb/database');
 
 ok($s, "the server object is defined");
 isa_ok($s, 'Test::Chimps::Server', "and it's of the correct type");

Modified: Test-Chimps/branches/modern-tap/t/15-lister-basic.t
==============================================================================
--- Test-Chimps/branches/modern-tap/t/15-lister-basic.t	(original)
+++ Test-Chimps/branches/modern-tap/t/15-lister-basic.t	Wed Sep  3 14:46:39 2008
@@ -1,4 +1,4 @@
-#!perl -T
+#!perl
 
 use Test::More tests => 3;
 



More information about the Bps-public-commit mailing list