projects
/
gitmo/MooseX-Role-Parameterized.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
04a71d388136c989de07b03a22e12cd67b6bd5d3
[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