From: Tomas Doran Date: Sat, 8 May 2010 20:56:12 +0000 (+0000) Subject: More info when tests fail X-Git-Tag: v1.013~4 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Authentication-Credential-HTTP.git;a=commitdiff_plain;h=d4fecb80ac30d51f2ee74c9bfeac36d094367ffc More info when tests fail --- diff --git a/Makefile.PL b/Makefile.PL index 96194b7..0cd2ff7 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -14,6 +14,8 @@ requires 'Test::MockObject'; requires 'URI::Escape'; requires 'Class::Accessor::Fast'; +test_requires 'Test::More' => '0.88'; + author_requires 'Test::WWW::Mechanize::Catalyst' => '0.51'; author_requires 'Test::Pod' => '1.14'; author_requires 'Test::Spelling' => '0.11'; diff --git a/t/00use.t b/t/00use.t new file mode 100644 index 0000000..e8d4137 --- /dev/null +++ b/t/00use.t @@ -0,0 +1,13 @@ +use strict; +use warnings; +use Test::More; + +use_ok 'Catalyst'; +diag 'Catalyst ' . $Catalyst::VERSION; +use_ok 'Catalyst::Plugin::Authentication'; +diag 'Catalyst::Plugin::Authentication ' . $Catalyst::Plugin::Authentication::VERSION; +use_ok 'Catalyst::Authentication::Credential::HTTP'; +diag 'Catalyst::Authentication::Credential::HTTP ' . $Catalyst::Authentication::Credential::HTTP::VERSION; + +done_testing; +