initial commit
[catagits/Catalyst-Plugin-ConfigLoader-Environment.git] / t / lib / TestApp / View / TestView.pm
CommitLineData
0580e0f8 1#!/usr/bin/perl
2# TestView.pm
3# Copyright (c) 2006 Jonathan Rockway <jrockway@cpan.org>
4
5package TestApp::View::TestView;
6use base 'Catalyst::View';
7
8sub AUTOLOAD {
9 our $AUTOLOAD =~ s{.*::}{};
10 return $_[0]->{$AUTOLOAD};
11}
12
131;