For now, forbid "alias" and "excludes" as keywords
[gitmo/MooseX-Role-Parameterized.git] / t / 010-blessed-confess.t
CommitLineData
2293e5f1 1#!/usr/bin/env perl
2use strict;
3use warnings;
4use Test::More tests => 2;
5
6do {
7 package MyRole;
8 use MooseX::Role::Parameterized;
9 ::is(\&confess, \&Carp::confess, 'confess');
10 ::is(\&blessed, \&Scalar::Util::blessed, 'blessed');
11};
12