[Bps-public-commit] r15734 - in Test-Chimps/trunk: .
alexmv at bestpractical.com
alexmv at bestpractical.com
Wed Sep 3 16:52:08 EDT 2008
Author: alexmv
Date: Wed Sep 3 16:52:03 2008
New Revision: 15734
Modified:
Test-Chimps/trunk/ (props changed)
Test-Chimps/trunk/Makefile.PL
Test-Chimps/trunk/t/05-report-basic.t
Test-Chimps/trunk/t/10-server-basic.t
Test-Chimps/trunk/t/15-lister-basic.t
Log:
r36836 at kohr-ah (orig r15721): alexmv | 2008-09-03 14:46:39 -0400
* Now passing tests
Modified: Test-Chimps/trunk/Makefile.PL
==============================================================================
--- Test-Chimps/trunk/Makefile.PL (original)
+++ Test-Chimps/trunk/Makefile.PL Wed Sep 3 16:52:03 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/trunk/t/05-report-basic.t
==============================================================================
--- Test-Chimps/trunk/t/05-report-basic.t (original)
+++ Test-Chimps/trunk/t/05-report-basic.t Wed Sep 3 16:52:03 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/trunk/t/10-server-basic.t
==============================================================================
--- Test-Chimps/trunk/t/10-server-basic.t (original)
+++ Test-Chimps/trunk/t/10-server-basic.t Wed Sep 3 16:52:03 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/trunk/t/15-lister-basic.t
==============================================================================
--- Test-Chimps/trunk/t/15-lister-basic.t (original)
+++ Test-Chimps/trunk/t/15-lister-basic.t Wed Sep 3 16:52:03 2008
@@ -1,4 +1,4 @@
-#!perl -T
+#!perl
use Test::More tests => 3;
More information about the Bps-public-commit
mailing list