[Catalyst-commits] r13231 - in
Catalyst-Authentication-Credential-HTTP/1.000/trunk: . t
t0m at dev.catalyst.perl.org
t0m at dev.catalyst.perl.org
Sat May 8 20:56:12 GMT 2010
Author: t0m
Date: 2010-05-08 21:56:12 +0100 (Sat, 08 May 2010)
New Revision: 13231
Added:
Catalyst-Authentication-Credential-HTTP/1.000/trunk/t/00use.t
Modified:
Catalyst-Authentication-Credential-HTTP/1.000/trunk/Makefile.PL
Log:
More info when tests fail
Modified: Catalyst-Authentication-Credential-HTTP/1.000/trunk/Makefile.PL
===================================================================
--- Catalyst-Authentication-Credential-HTTP/1.000/trunk/Makefile.PL 2010-05-08 20:52:59 UTC (rev 13230)
+++ Catalyst-Authentication-Credential-HTTP/1.000/trunk/Makefile.PL 2010-05-08 20:56:12 UTC (rev 13231)
@@ -14,6 +14,8 @@
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';
Added: Catalyst-Authentication-Credential-HTTP/1.000/trunk/t/00use.t
===================================================================
--- Catalyst-Authentication-Credential-HTTP/1.000/trunk/t/00use.t (rev 0)
+++ Catalyst-Authentication-Credential-HTTP/1.000/trunk/t/00use.t 2010-05-08 20:56:12 UTC (rev 13231)
@@ -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;
+
More information about the Catalyst-commits
mailing list