test with Test::Deep::eq_deeply
[gitmo/Moose.git] / lib / Moose / Meta / Instance.pm
CommitLineData
7aad237e 1
2package Moose::Meta::Instance;
3
4use strict;
5use warnings;
6
ac1ef2f9 7our $VERSION = '0.01';
7aad237e 8
9use base "Class::MOP::Instance";
7aad237e 10
ac1ef2f9 111;
12
13__END__
14
15=pod
16
17=head1 NAME
18
19Moose::Meta::Instance - The Moose Instance metaclass
20
21=head1 DESCRIPTION
22
9e93dd19 23This is a stub mostly, but I know I will want to use it later on.
24
25See the L<Class::MOP::Instance> docs for details on the instance
26protocol.
ac1ef2f9 27
28=head1 BUGS
29
30All complex software has bugs lurking in it, and this module is no
31exception. If you find a bug please either email me, or add the bug
32to cpan-RT.
33
34=head1 AUTHOR
35
36Stevan Little E<lt>stevan@iinteractive.comE<gt>
37
98aae381 38Yuval Kogman E<lt>nothingmuch@woobling.comE<gt>
39
ac1ef2f9 40=head1 COPYRIGHT AND LICENSE
41
b77fdbed 42Copyright 2006, 2007 by Infinity Interactive, Inc.
ac1ef2f9 43
44L<http://www.iinteractive.com>
45
46This library is free software; you can redistribute it and/or modify
47it under the same terms as Perl itself.
7aad237e 48
ac1ef2f9 49=cut