The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package TestAppAuthenticate;

use base qw(CGI::Application);
use CGI::Application::Plugin::Session;
use CGI::Application::Plugin::Authentication;
use lib 't/lib';
use TestDB;

__PACKAGE__->authen->config(
  DRIVER => [
    'DBIC',
    SCHEMA        => TestDB->connect('dbi:SQLite:t/db/users.db'), 
    CLASS         => 'Users',
    FIELD_METHODS => [qw( user passphrase )]
  ],
  CREDENTIALS => [qw( auth_username auth_password )],
  STORE       => 'Session',
);


sub setup {
  my $self = shift;
  $self->start_mode('one');
  $self->run_modes([qw( one two )]);
  $self->authen->protected_runmodes(qw( two ));
}

sub one {
  my $self = shift;
}

sub two {
  my $self = shift;
}
1;