X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=t%2Fmoosified-rs.t;h=cf3d942f1add7e73e7fb8a145cfb2c016d792726;hb=89da0fb10b03df56ff87caa6624843e1d817ffea;hp=f11401047e8841bf6824bfe8274f01deb9fcf246;hpb=1256bfdf7d47490da4d6521b1895f0f9d362a461;p=chaz%2Fp5-DBIx-Class-ResultSet-RecursiveUpdate 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;