whitespace fixes
[catagits/Catalyst-Authentication-Store-Htpasswd.git] / t / lib / TestApp.pm
CommitLineData
16585083 1package TestApp;
2use strict;
3use warnings;
4
5use Catalyst qw/
6 Authentication
7/;
8
9__PACKAGE__->config(
10 authentication => {
11 default_realm => 'test',
12 realms => {
13 test => {
14 credential => {
15 class => 'Password',
16 password_field => 'password',
17 password_type => 'self_check',
18 },
19 store => {
20 class => 'Htpasswd',
21 file => 'htpasswd',
22 },
23 },
24 },
29150588 25 },
16585083 26);
27
28__PACKAGE__->setup;
29
301;