Fixed deprecation warnings in tests about ::[MVC]:: naming scheme and Catalyst::Base.
[catagits/Catalyst-Plugin-RequireSSL.git] / t / lib / TestApp / C / SSL.pm
diff --git a/t/lib/TestApp/C/SSL.pm b/t/lib/TestApp/C/SSL.pm
deleted file mode 100644 (file)
index 18f67e0..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-package TestApp::C::SSL;
-
-use strict;
-use base 'Catalyst::Base';
-
-sub secured : Local {
-    my ( $self, $c ) = @_;
-    
-    $c->require_ssl;
-    
-    $c->res->output( 'Secured' );
-}
-
-sub unsecured : Local {
-    my ( $self, $c ) = @_;
-    
-    $c->res->output( 'Unsecured' );
-}
-
-sub maybe_secured : Local {
-    my ( $self, $c ) = @_;
-    
-    $c->allow_ssl;
-    
-    $c->res->output( 'Maybe secured' );
-}
-
-1;