adding the MooseX::MetaDescription stuff distilled from Ernst
[gitmo/MooseX-MetaDescription.git] / t / 000_load.t
CommitLineData
c13295c8 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
6use Test::More no_plan => 1;
7use Test::Exception;
8
9BEGIN {
10 use_ok('MooseX::MetaDescription');
11
12 use_ok('MooseX::MetaDescription::Meta::Class');
13 use_ok('MooseX::MetaDescription::Meta::Attribute');
14 use_ok('MooseX::MetaDescription::Meta::Attribute::Trait');
15
16 use_ok('MooseX::MetaDescription::Description');
17 use_ok('MooseX::MetaDescription::Description::Class');
18 use_ok('MooseX::MetaDescription::Description::Attribute');
19}