projects
/
gitmo/Moose.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Changes for this branch
[gitmo/Moose.git]
/
t
/
000_load.t
1
#!/usr/bin/perl
2
3
use strict;
4
use warnings;
5
6
use Test::More;
7
8
{
9
package Foo;
10
11
# Moose will issue a warning if we try to load it from the main
12
# package.
13
::use_ok('Moose');
14
}
15
16
done_testing;