Move t/*/t into t/001_mouse
[gitmo/Mouse.git] / t / 001_mouse / 045-import-into_level.t
CommitLineData
bfcc8a05 1use strict;
2use warnings;
3use lib 't/lib';
4use Test::More tests => 1;
5
6{
7 package Foo;
8 use BaseClass;
9}
10
11is(Foo->new->foo(), 'bar');
12