0b3a3b4910c09865b28668516bfafcd92f9bdfda
[catagits/Catalyst-Runtime.git] / t / TestApp / lib / TestApp / Controller / Root.pm
1 package TestApp::Controller::Root;
2
3 use strict;
4 use warnings;
5 use parent 'Catalyst::Controller';
6
7 #
8 # Sets the actions in this controller to be registered with no prefix
9 # so they function identically to actions created in MyApp.pm
10 #
11 __PACKAGE__->config->{namespace} = '';
12
13 =head1 NAME
14
15 TestApp::Controller::Root - Root Controller for TestApp
16
17 =head1 DESCRIPTION
18
19 [enter your description here]
20
21 =head1 METHODS
22
23 =cut
24
25 =head2 index
26
27 =cut
28
29 sub index :Path :Args(0) {
30     my ( $self, $c ) = @_;
31
32     # Hello World
33     $c->response->body( $c->welcome_message );
34 }
35
36 sub default :Path {
37     my ( $self, $c ) = @_;
38     $c->response->body( 'Page not found' );
39     $c->response->status(404);
40 }
41
42 sub test : Local {
43   my ($self, $c) = @_;
44   
45   $c->res->body("herro!!");
46 }
47
48 =head2 end
49
50 Attempt to render a view, if needed.
51
52 =cut
53
54 sub end : ActionClass('RenderView') {}
55
56 =head1 AUTHOR
57
58 Devin Austin,,,
59
60 =head1 LICENSE
61
62 This library is free software. You can redistribute it and/or modify
63 it under the same terms as Perl itself.
64
65 =cut
66
67 1;