Regenerate test files
[gitmo/Mouse.git] / t / 010_basics / 016_load_into_main.t
1 #!/usr/bin/perl
2 # This is automatically generated by author/import-moose-test.pl.
3 # DO NOT EDIT THIS FILE. ANY CHANGES WILL BE LOST!!!
4 use t::lib::MooseCompat;
5
6 use strict;
7 use warnings;
8
9 use Test::More;
10 use Test::Exception;
11
12 lives_ok {
13     eval 'use Mouse';
14 } "export to main";
15
16 isa_ok( main->meta, "Mouse::Meta::Class" );
17
18 isa_ok( main->new, "main");
19 isa_ok( main->new, "Mouse::Object" );
20
21 done_testing;