X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=testapp%2Flib%2FStompTestApp%2FController%2FTestJsonController.pm;fp=testapp%2Flib%2FStompTestApp%2FController%2FTestJsonController.pm;h=0000000000000000000000000000000000000000;hb=3df1f3be5d21a8ff08c4564539c9b0d70590b93f;hp=daf9ffbf56cd55adb3209e06324df308661be746;hpb=1525c58383c49694856673944b2e26103a5b49df;p=catagits%2FCatalyst-Engine-STOMP.git diff --git a/testapp/lib/StompTestApp/Controller/TestJsonController.pm b/testapp/lib/StompTestApp/Controller/TestJsonController.pm deleted file mode 100644 index daf9ffb..0000000 --- a/testapp/lib/StompTestApp/Controller/TestJsonController.pm +++ /dev/null @@ -1,18 +0,0 @@ -package # Hide from PAUSE - StompTestApp::Controller::TestJsonController; -use Moose; -use namespace::autoclean; - -BEGIN { extends 'Catalyst::Controller::MessageDriven' }; - -__PACKAGE__->config( serializer => 'JSON' ); - -sub testaction : Local { - my ($self, $c, $request) = @_; - - # Reply with a minimal response message - my $response = { type => 'testaction_response' }; - $c->stash->{response} = $response; -} - -1;