Attempt to please PAUSE by renaming our test app, and marking its package no_index
[catagits/Catalyst-Engine-STOMP.git] / testapp / lib / TestApp / Controller / TestController.pm
diff --git a/testapp/lib/TestApp/Controller/TestController.pm b/testapp/lib/TestApp/Controller/TestController.pm
deleted file mode 100644 (file)
index 75904f6..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-package TestApp::Controller::TestController;
-use Moose;
-
-BEGIN { extends 'Catalyst::Controller::MessageDriven' };
-
-sub testaction : Local {
-    my ($self, $c) = @_;
-
-    # Reply with a minimal response message
-    my $response = { type => 'testaction_response' };
-    $c->stash->{response} = $response;
-}
-
-1;