1
0
mirror of synced 2026-04-30 05:45:08 +00:00

Automatically skip syntax check if Moose is not installed

This commit is contained in:
Axel Beckert
2010-04-15 02:51:05 +02:00
parent bf195706b8
commit ce8f44ed36

View File

@@ -11,7 +11,11 @@
use strict;
use File::Find;
use Test::More qw( no_plan );
use Test::More;
eval "use Moose";
plan skip_all => "Moose required for testing Perl syntax"
if $@;
#