1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
use strict;
use warnings;
use Test::More;
use Try::Tiny;
use Catalyst::Authentication::Store::DBIx::Class::User;
my $message = 'I exist';
{
package My::Test;
sub exists { $message }
}
my $class = 'Catalyst::Authentication::Store::DBIx::Class::User';
my $o = bless({
_user => bless({}, 'My::Test'),
}, $class);
is($o->exists, $message, 'AUTOLOAD proxies ok');
ok(my $meth = $o->can('exists'), 'can returns true');
is($o->$meth, $message, 'can returns right coderef');
is($o->can('non_existent_method'), undef, 'can on non existent method returns undef');
is($o->non_existent_method, undef, 'AUTOLOAD traps non existent method');
try {
is($class->can('non_existent_method'), undef, "can on non existent class method");
} catch {
my $e = $_;
fail('can on non existent class method');
diag("Got exception: $e");
};
try {
is($class->non_existent_method, undef, 'AUTOLOAD traps non existent class method');
} catch {
my $e = $_;
fail('AUTOLOAD traps non existent class method');
diag("Got exception: $e");
};
done_testing;
|