From: Arthur Axel 'fREW' Schmidt Date: Wed, 26 Aug 2009 03:23:19 +0000 (-0500) Subject: add failing test (for private action) X-Git-Tag: 0.77~6 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Action-REST.git;a=commitdiff_plain;h=07b2ce2791d17c5779b1181bb77fc41d446e85e8 add failing test (for private action) --- diff --git a/t/lib/Test/Catalyst/Action/REST/Controller/Actions.pm b/t/lib/Test/Catalyst/Action/REST/Controller/Actions.pm index f1b6f23..39a04a5 100644 --- a/t/lib/Test/Catalyst/Action/REST/Controller/Actions.pm +++ b/t/lib/Test/Catalyst/Action/REST/Controller/Actions.pm @@ -13,7 +13,7 @@ sub test : Local : ActionClass('REST') { $c->stash->{'entity'} = 'something'; } -sub test_GET :ActionClass('+Test::Action::Class') { +sub test_GET : Private ActionClass('+Test::Action::Class') { my ( $self, $c ) = @_; $c->stash->{'entity'} .= " GET";