Checking in changes prior to tagging of version 0.65.
[gitmo/Mouse.git] / t / 000-load.t
CommitLineData
c3398f5b 1#!perl -T
354cc113 2package Foo;
c3398f5b 3use strict;
4use warnings;
02ce50cb 5use Test::More tests => 2;
c3398f5b 6
ea28c346 7require_ok 'Mouse';
8require_ok 'Mouse::Role';
c3398f5b 9
081ecb94 10no warnings 'uninitialized';
46fce5c9 11
94fc8b39 12diag "Testing Mouse/$Mouse::VERSION (", exists $INC{'Mouse/PurePerl.pm'} ? 'Pure Perl' : 'XS', ")";
13
5b776030 14diag "Soft dependency versions:";
43e6a50b 15
46fce5c9 16eval { require Moose };
081ecb94 17diag " Class::MOP: $Class::MOP::VERSION";
18diag " Moose: $Moose::VERSION";