Merge kmx's remote_credential branch
[catagits/Catalyst-Plugin-Authentication.git] / t / lib / RemoteTestEngine.pm
CommitLineData
b94c4996 1package RemoteTestEngine;
2use base 'Catalyst::Engine::CGI';
3
4our $REMOTE_USER;
5our $SSL_CLIENT_S_DN;
6
7sub env {
8 my $self = shift;
9 my %e = %ENV;
10 $e{REMOTE_USER} = $REMOTE_USER;
11 $e{SSL_CLIENT_S_DN} = $SSL_CLIENT_S_DN;
12 return \%e;
13};
14
151;