Fixed some tests so they're now passing (things like bad plans and pod-coverage)
Rob Kinyon [Fri, 20 Feb 2009 03:18:05 +0000 (03:18 +0000)]
t/03podcoverage.t
t/66relationship.t
t/96multi_create.t

index e3059a1..18c5292 100644 (file)
@@ -29,6 +29,11 @@ my $exceptions = {
               mk_classaccessor/
         ]
     },
+    'DBIx::Class::Row' => {
+        ignore => [
+           qw( MULTICREATE_DEBUG )
+        ],
+    },
     'DBIx::Class::Storage' => {
         ignore => [
             qw(cursor)
index 88f5c16..0ae02e6 100644 (file)
@@ -8,7 +8,7 @@ use DBICTest;
 
 my $schema = DBICTest->init_schema();
 
-plan tests => 75;
+plan tests => 69;
 
 # has_a test
 my $cd = $schema->resultset("CD")->find(4);
index 9c75cac..77cc347 100644 (file)
@@ -6,7 +6,7 @@ use Test::Exception;
 use lib qw(t/lib);
 use DBICTest;
 
-plan tests => 85;
+plan tests => 79;
 
 my $schema = DBICTest->init_schema();