From: Marcus Ramberg Date: Tue, 14 Oct 2008 09:13:15 +0000 (+0000) Subject: Change Catalyst::Test to use Moose X-Git-Tag: 5.8000_03~43 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=3efafed1091ee19b05cefa82e4e7d4a574e0e135;hp=ce8dcf03e15a6001a32aaf7c867f8c3d0be7ff19 Change Catalyst::Test to use Moose --- diff --git a/Changes b/Changes index bba5c5e..d70d012 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,7 @@ # This file documents the revision history for Perl extension Catalyst. + - Change Catalyst::Test to use Moose + 5.8000_02 2008-10-14 07:59:00 - Fix manifest diff --git a/lib/Catalyst/Test.pm b/lib/Catalyst/Test.pm index 7c3022a..65cdbd8 100644 --- a/lib/Catalyst/Test.pm +++ b/lib/Catalyst/Test.pm @@ -2,14 +2,14 @@ package Catalyst::Test; use Test::More; -use strict; -use warnings; +use Moose; use Catalyst::Exception; use Catalyst::Utils; use Class::Inspector; -use parent qw/Exporter/; +extends 'Exporter'; + our @EXPORT=qw/&content_like &action_ok &action_redirect &action_notfound &contenttype_is/;