From: John Napiorkowski Date: Fri, 25 May 2007 04:42:13 +0000 (+0000) Subject: fixed some tests X-Git-Tag: v0.08010~150^2~50^2~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=735ba30ee0315ddf620664342c6a4215f7be5850;p=dbsrgits%2FDBIx-Class.git fixed some tests --- diff --git a/t/101populate_rs.t b/t/101populate_rs.t index 39b59b9..aedff87 100644 --- a/t/101populate_rs.t +++ b/t/101populate_rs.t @@ -8,7 +8,6 @@ ## Also need to test some stuff that should generate errors. ## ---------------------------------------------------------------------------- - use strict; use warnings; @@ -16,7 +15,8 @@ use Test::More; use lib qw(t/lib); use DBICTest; -plan tests => 53; +plan tests => 98; + ## ---------------------------------------------------------------------------- ## Get a Schema and some ResultSets we can play with. @@ -320,7 +320,10 @@ VOID_CONTEXT: { ok( $formerly->name eq 'VOID_PK_Formerly Named', "Got Correct name for result object"); ## Create the expected children sub objects? - use Data::Dump qw/dump/; + ok( $crap->can('cds'), "Has cds relationship"); + ok( $girl->can('cds'), "Has cds relationship"); + ok( $damn->can('cds'), "Has cds relationship"); + ok( $formerly->can('cds'), "Has cds relationship"); ok( $crap->cds->count == 0, "got Expected Number of Cds"); ok( $girl->cds->count == 2, "got Expected Number of Cds"); @@ -470,9 +473,10 @@ VOID_CONTEXT: { ok( $formerly->name eq 'VOID_Formerly Named', "Got Correct name for result object"); ## Create the expected children sub objects? - use Data::Dump qw/dump/; - - warn dump map { $_->get_columns } $damn->cds; + ok( $crap->can('cds'), "Has cds relationship"); + ok( $girl->can('cds'), "Has cds relationship"); + ok( $damn->can('cds'), "Has cds relationship"); + ok( $formerly->can('cds'), "Has cds relationship"); ok( $crap->cds->count == 0, "got Expected Number of Cds"); ok( $girl->cds->count == 2, "got Expected Number of Cds"); @@ -482,9 +486,21 @@ VOID_CONTEXT: { ## Did the cds get expected information? my ($cd1, $cd2) = $girl->cds->search({},{order_by=>'year ASC'}); + + ok($cd1, "Got a got CD"); + ok($cd2, "Got a got CD"); + + SKIP:{ + + skip "Can't Test CD because we failed to create it", 1 unless $cd1; + ok( $cd1->title eq "VOID_My First CD", "Got Expected CD Title"); + } + + SKIP:{ - ok( $cd1->title eq "VOID_My First CD", "Got Expected CD Title"); - ok( $cd2->title eq "VOID_Yet More Tweeny-Pop crap", "Got Expected CD Title"); + skip "Can't Test CD because we failed to create it", 1 unless $cd2; + ok( $cd2->title eq "VOID_Yet More Tweeny-Pop crap", "Got Expected CD Title"); + } } }