From: gfx Date: Sun, 25 Oct 2009 05:37:08 +0000 (+0900) Subject: Report $Mouse::VERSION and the backend (Pure Perl or XS) in load.t X-Git-Tag: 0.40_01~23 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMouse.git;a=commitdiff_plain;h=94fc8b3951e11b1f438c88fddff5b91d398b79fa Report $Mouse::VERSION and the backend (Pure Perl or XS) in load.t --- diff --git a/t/000-load.t b/t/000-load.t index 3c02f2d..720ceeb 100644 --- a/t/000-load.t +++ b/t/000-load.t @@ -9,6 +9,8 @@ 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 MRO::Compat };