Move the testapp out of the main directory and under t/, avoiding the need for a...
[catagits/Catalyst-Engine-STOMP.git] / testapp / lib / StompTestApp / Controller / TestJsonController.pm
diff --git a/testapp/lib/StompTestApp/Controller/TestJsonController.pm b/testapp/lib/StompTestApp/Controller/TestJsonController.pm
deleted file mode 100644 (file)
index daf9ffb..0000000
+++ /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;