File: Stub.pm

package info (click to toggle)
libcatalyst-authentication-credential-authen-simple-perl 0.09-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 228 kB
  • ctags: 26
  • sloc: perl: 305; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 195 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
package Authen::Simple::Stub;

use strict;
use warnings;
use base 'Authen::Simple::Adapter';

sub check {
    my ( $self, $username, $password ) = @_;

    return ($username eq $password);
}
1;