Remove numbers from our tests
[gitmo/Moose.git] / t / 000_load.t
CommitLineData
fcd84ca9 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
a28e50e4 6use Test::More;
fcd84ca9 7
a28e50e4 8{
9 package Foo;
7ff56534 10
a28e50e4 11 # Moose will issue a warning if we try to load it from the main
12 # package.
13 ::use_ok('Moose');
14}
7ff56534 15
a28e50e4 16done_testing;