instance-protocol
[gitmo/Class-MOP.git] / t / 060_instance.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 1;
7 use Test::Exception;
8
9 use Scalar::Util 'reftype', 'isweak';
10
11 BEGIN {
12     use_ok('Class::MOP::Instance');    
13 }
14