From: J. Shirley Date: Wed, 23 Jul 2008 22:03:08 +0000 (+0000) Subject: Skipping this unless we have Clone X-Git-Tag: v0.08240~397 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ae0419e299792a6a10fc754a2a7c810596023c15;p=dbsrgits%2FDBIx-Class.git Skipping this unless we have Clone --- 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/);