X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F68inflate_has_a.t;h=9dc1661bfe09157a847ada6edd6a333bca71edcb;hb=20ea4813ff750408ceb3b9701bf9e88dc6bcff78;hp=296aae0c5a2fa61b18a6b9664a1b2adfd675041d;hpb=658b87f687c73589c911833a1b46ea39ddb45847;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/t/68inflate_has_a.t b/t/68inflate_has_a.t index 296aae0..9dc1661 100644 --- a/t/68inflate_has_a.t +++ b/t/68inflate_has_a.t @@ -10,6 +10,9 @@ my $schema = DBICTest->init_schema(); eval { require DateTime }; plan skip_all => "Need DateTime for inflation tests" if $@; +eval { require Clone }; +plan skip_all => "Need Clone for CDBICompat inflation tests" if $@; + plan tests => 6; DBICTest::Schema::CD->load_components(qw/CDBICompat::Relationships/);