X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Faccept_context_regression.t;h=9828702f811b544556b9d98a6671a1fdbc0a2cbe;hp=9e243d1f6b9a38ed4f60ce5bf18596a3263f60e4;hb=42d0a52a587a2d6213ae04e0c41184c0e4afc9a2;hpb=630ad67c1485ab8177e41b7ed6c9ff9ed222d09a diff --git a/t/accept_context_regression.t b/t/accept_context_regression.t index 9e243d1..9828702 100644 --- a/t/accept_context_regression.t +++ b/t/accept_context_regression.t @@ -1,4 +1,6 @@ -use Test::Most; +use strict; +use warnings; +use Test::More; { package MyApp::Model::AcceptContext; @@ -6,7 +8,7 @@ use Test::Most; sub ACCEPT_CONTEXT { my ($self, $c, @args) = @_; - Test::Most::ok( ref $c); + Test::More::ok( ref $c); } $INC{'MyApp/Model/AcceptContext.pm'} = __FILE__;