[Catalyst-commits] r11382 - in
Catalyst-Authentication-Credential-OAuth/trunk: . t
t0m at dev.catalyst.perl.org
t0m at dev.catalyst.perl.org
Fri Sep 18 00:25:38 GMT 2009
Author: t0m
Date: 2009-09-18 00:25:37 +0000 (Fri, 18 Sep 2009)
New Revision: 11382
Modified:
Catalyst-Authentication-Credential-OAuth/trunk/Makefile.PL
Catalyst-Authentication-Credential-OAuth/trunk/t/00-load.t
Log:
Fix dependency issues in Makefile.PL
Modified: Catalyst-Authentication-Credential-OAuth/trunk/Makefile.PL
===================================================================
--- Catalyst-Authentication-Credential-OAuth/trunk/Makefile.PL 2009-09-17 22:20:48 UTC (rev 11381)
+++ Catalyst-Authentication-Credential-OAuth/trunk/Makefile.PL 2009-09-18 00:25:37 UTC (rev 11382)
@@ -7,10 +7,11 @@
requires 'Net::OAuth';
requires 'LWP::UserAgent';
requires 'String::Random';
+requires 'MooseX::Types::Common::String';
+requires 'MooseX::Types';
+requires 'namespace::autoclean';
-build_requires 'Catalyst::Runtime';
-build_requires 'Test::WWW::Mechanize::Catalyst';
-build_requires 'Test::More';
-build_requires 'ok';
+test_requires 'Catalyst::Runtime';
+test_requires 'Test::More';
WriteAll();
Modified: Catalyst-Authentication-Credential-OAuth/trunk/t/00-load.t
===================================================================
--- Catalyst-Authentication-Credential-OAuth/trunk/t/00-load.t 2009-09-17 22:20:48 UTC (rev 11381)
+++ Catalyst-Authentication-Credential-OAuth/trunk/t/00-load.t 2009-09-18 00:25:37 UTC (rev 11382)
@@ -3,4 +3,4 @@
use strict;
use warnings;
use Test::More tests => 1;
-use ok 'Catalyst::Authentication::Credential::OAuth';
+use_ok 'Catalyst::Authentication::Credential::OAuth';
More information about the Catalyst-commits
mailing list