From: Shawn M Moore Date: Sun, 19 Oct 2008 06:45:00 +0000 (+0000) Subject: Include CMOP and Moose versions in the dependency display X-Git-Tag: 0.19~171 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=commitdiff_plain;h=081ecb940104550b9d18c4dcc84cd7267826a236 Include CMOP and Moose versions in the dependency display --- diff --git a/t/000-load.t b/t/000-load.t index a78968a..e7d3343 100644 --- a/t/000-load.t +++ b/t/000-load.t @@ -19,3 +19,7 @@ for my $module_name (keys %Mouse::Util::loaded) { diag " $module_name: $version"; } +eval { require Moose }; +no warnings 'uninitialized'; +diag " Class::MOP: $Class::MOP::VERSION"; +diag " Moose: $Moose::VERSION";