s/make_immutable/metaclass->make_immutable/
[gitmo/Moose.git] / t / 010_basics / 015_metaclass_keyword.t
CommitLineData
07af02bd 1#!/usr/bin/perl
2
f02c03d6 3use strict;
4use warnings;
5
6use Test::More tests => 2;
7
8BEGIN {
9 use_ok('Moose');
10}
11
07af02bd 12{
13
14 package Foo;
07af02bd 15 use Moose;
16
f02c03d6 17 ::is( metaclass(), __PACKAGE__->meta, 'metaclass and __PACKAGE__->meta are the same' );
07af02bd 18}
19