Regenerate test files
[gitmo/Mouse.git] / t / 010_basics / 016_load_into_main.t
CommitLineData
fde8e43f 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!!!
4use t::lib::MooseCompat;
5
6use strict;
7use warnings;
8
9use Test::More;
10use Test::Exception;
11
12lives_ok {
13 eval 'use Mouse';
14} "export to main";
15
16isa_ok( main->meta, "Mouse::Meta::Class" );
17
18isa_ok( main->new, "main");
19isa_ok( main->new, "Mouse::Object" );
20
21done_testing;