| Current Path : /usr/share/doc/perl-MooseX-Role-Parameterized/t/ |
| Current File : //usr/share/doc/perl-MooseX-Role-Parameterized/t/010-blessed-confess.t |
use strict;
use warnings;
use Test::More 0.88;
do {
package MyRole;
use MooseX::Role::Parameterized;
::is(\&confess, \&Carp::confess, 'confess');
::is(\&blessed, \&Scalar::Util::blessed, 'blessed');
};
done_testing;