Fix a syntax error, and add a list of newly required modules to testEnvironment.pl

This commit is contained in:
Colin Kuskie 2009-12-02 16:06:06 -08:00
parent 88aba652c7
commit 0c90162c57
2 changed files with 4 additions and 1 deletions

View file

@ -19,7 +19,7 @@ use Moose::Role;
use namespace::autoclean;
no warnings qw(uninitialized);
with 'WebGUI::Definition::Role::Asset'
with 'WebGUI::Definition::Role::Asset';
our $VERSION = '0.0.1';

View file

@ -134,6 +134,9 @@ checkModule("CSS::Minifier::XS", "0.03" );
checkModule("JavaScript::Minifier::XS", "0.05" );
checkModule("Readonly", "1.03" );
checkModule("Memcached::libmemcached", "0.3102" );
checkModule("Moose", "0.93" );
checkModule("MooseX::Storage", "0.23" );
checkModule("namespace::autoclean", "0.09" );
failAndExit("Required modules are missing, running no more checks.") if $missingModule;