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