projects
/
gitmo/Moose.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
tests for metaclass() export
[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