The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl

package ACLTestApp::Controller::Zoo::Penguins;
use base qw/Catalyst::Controller/;

use strict;
use warnings;

sub emperor : Local {
	my ( $self, $c ) = @_;
	$c->res->body("emperor penguin");
}

sub tux : Local {
	my ( $self, $c ) = @_;
	$c->res->body("tux");
}

sub madagascar : Local {
	my ( $self, $c ) = @_;
	$c->res->body("madagascar");
}

__PACKAGE__;

__END__

=pod

=head1 NAME

ACLTestApp::Controller::Zoo - 

=head1 SYNOPSIS

	use ACLTestApp::Controller::Zoo;

=head1 DESCRIPTION

=cut