import my old svn repo here
[catagits/Catalyst-Component-ACCEPT_CONTEXT.git] / t / lib / TestApp / View / Test.pm
CommitLineData
75f37967 1# Copyright (c) 2007 Jonathan Rockway <jrockway@cpan.org>
2
3package TestApp::View::Test;
4use strict;
5use warnings;
6use base qw(Catalyst::Component::ACCEPT_CONTEXT Catalyst::View);
7
8sub message {
9 my $self = shift;
10 return $self->context->stash->{message};
11}
12
131;
14