more tweaks
[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
de7ba0e9 16 use_ok('MooseX::MetaDescription::Meta::Role::HasMetaDescription');
17
c13295c8 18 use_ok('MooseX::MetaDescription::Description');
19 use_ok('MooseX::MetaDescription::Description::Class');
20 use_ok('MooseX::MetaDescription::Description::Attribute');
21}