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