85eefa5bb8a540a6a261ca962bf0b73eb005f9ae
[gitmo/Moose.git] / t / 010_basics / 015_metaclass_keyword.t
1 #!/usr/bin/perl
2
3 {
4
5     package Foo;
6     use Test::More tests => 1;
7     use Moose;
8
9     is( metaclass(), __PACKAGE__->meta,
10         'metaclass and __PACKAGE__->meta are the same' );
11 }
12