release 0.1004
[catagits/Catalyst-Authentication-Store-LDAP.git] / t / lib / UserClass.pm
1 package UserClass;
2 use strict;
3 use warnings;
4 use base qw( Catalyst::Authentication::Store::LDAP::User );
5
6 sub my_method {
7     return 'frobnitz';
8 }
9
10 1;