Erm, the test app for comparison needs to be generated with the current code, or...
[catagits/Catalyst-Devel.git] / t / TestAppForComparison / lib / TestAppForComparison / Controller / Root.pm
CommitLineData
057cf470 1package TestAppForComparison::Controller::Root;
2
3use strict;
4use warnings;
5use 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
15TestAppForComparison::Controller::Root - Root Controller for TestAppForComparison
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
29sub index :Path :Args(0) {
30 my ( $self, $c ) = @_;
31
32 # Hello World
33 $c->response->body( $c->welcome_message );
34}
35
36sub default :Path {
37 my ( $self, $c ) = @_;
38 $c->response->body( 'Page not found' );
39 $c->response->status(404);
40}
41
42=head2 end
43
44Attempt to render a view, if needed.
45
46=cut
47
48sub end : ActionClass('RenderView') {}
49
50=head1 AUTHOR
51
26e2c891 52Tomas Doran,,,
057cf470 53
54=head1 LICENSE
55
26e2c891 56This library is free software. You can redistribute it and/or modify
057cf470 57it under the same terms as Perl itself.
58
59=cut
60
611;