Adding basic test cases for the view.
[catagits/Catalyst-View-Email.git] / t / lib / TestApp / View / Email.pm
1 package # Hide from PAUSE
2     TestApp::View::Email;
3
4 use Email::Send::Test;
5
6 use base 'Catalyst::View::Email';
7
8 __PACKAGE__->config(
9     sender => {
10         method => 'Test'
11     },
12 );
13
14 1;