X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fp5-DBIx-Class-ResultSet-RecursiveUpdate;a=blobdiff_plain;f=t%2Fmoosified-rs.t;h=cf3d942f1add7e73e7fb8a145cfb2c016d792726;hp=f11401047e8841bf6824bfe8274f01deb9fcf246;hb=25f3140df07856bb1e2b05a2a3bf9322d8e80371;hpb=1256bfdf7d47490da4d6521b1895f0f9d362a461 diff --git a/t/moosified-rs.t b/t/moosified-rs.t index f114010..cf3d942 100644 --- a/t/moosified-rs.t +++ b/t/moosified-rs.t @@ -2,6 +2,17 @@ use strict; use warnings; use Test::More; +BEGIN { + eval { + require Moose; + require MooseX::NonMoose; + require namespace::autoclean; + }; + plan skip_all => + "Moose, MooseX::NonMoose and namespace::autoclean required" + if $@; +} + use lib 't/lib'; use DBSchemaMoose; use RunTests;