And more cleanup
[dbsrgits/DBIx-Class.git] / t / admin / 01load.t
CommitLineData
9f3849c3 1#
2#===============================================================================
3#
4# FILE: 01load.t
5#
6# DESCRIPTION:
7#
8# FILES: ---
9# BUGS: ---
10# NOTES: ---
6bceaca3 11# AUTHOR: Gordon Irving (), <goraxe@cpan.org>
9f3849c3 12# VERSION: 1.0
13# CREATED: 28/11/09 13:54:30 GMT
14# REVISION: ---
15#===============================================================================
16
17use strict;
18use warnings;
19
34963a09 20use Test::More;
6bceaca3 21
22
23BEGIN {
24 eval "use DBIx::Class::Admin";
25 plan skip_all => "Deps not installed: $@" if $@;
26}
27
28use_ok 'DBIx::Class::Admin';
9f3849c3 29
30
31done_testing;