From: Karen Etheridge Date: Mon, 4 Oct 2010 22:59:55 +0000 (-0700) Subject: print timestamp and CMOP, Moose versions for author tests X-Git-Tag: 1.15~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7028866a97aad1ae5219b8c8a912d28886079fef;p=gitmo%2FMoose.git print timestamp and CMOP, Moose versions for author tests --- diff --git a/xt/author/test-my-dependents.t b/xt/author/test-my-dependents.t index 9304950..8701803 100644 --- a/xt/author/test-my-dependents.t +++ b/xt/author/test-my-dependents.t @@ -14,6 +14,14 @@ use Test::Requires { }; use Test::DependentModules qw( test_all_dependents test_module ); +use DateTime; +use Class::MOP (); +use Moose (); +print 'Test run performed at: ' . DateTime->now, + ' with Class::MOP ', Class::MOP->VERSION, + ' and Moose ', Moose->VERSION, "\n"; + + $ENV{PERL_TEST_DM_LOG_DIR} = abs_path('.'); my $exclude = qr/^Acme-/x;