Make sure we export blessed and confess
[gitmo/MooseX-Role-Parameterized.git] / t / 010-blessed-confess.t
1 #!/usr/bin/env perl
2 use strict;
3 use warnings;
4 use Test::More tests => 2;
5
6 do {
7     package MyRole;
8     use MooseX::Role::Parameterized;
9     ::is(\&confess, \&Carp::confess, 'confess');
10     ::is(\&blessed, \&Scalar::Util::blessed, 'blessed');
11 };
12