X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F000-load.t;fp=t%2F000-load.t;h=b3132e2b47e33c41d3304937908345671ccce0e8;hb=9864f0e4ba233c5f30ad6dc7c484ced43d883d27;hp=0000000000000000000000000000000000000000;hpb=8845df4dd6432e3164d078ade741409061adae9f;p=gitmo%2FMouse.git diff --git a/t/000-load.t b/t/000-load.t new file mode 100644 index 0000000..b3132e2 --- /dev/null +++ b/t/000-load.t @@ -0,0 +1,18 @@ +#!perl -T +package Foo; +use strict; +use warnings; +use Test::More tests => 2; + +require_ok 'Mouse'; +require_ok 'Mouse::Role'; + +no warnings 'uninitialized'; + +diag "Testing Mouse/$Mouse::VERSION (", exists $INC{'Mouse/PurePerl.pm'} ? 'Pure Perl' : 'XS', ")"; + +diag "Soft dependency versions:"; + +eval { require Moose }; +diag " Class::MOP: $Class::MOP::VERSION"; +diag " Moose: $Moose::VERSION";