More detabification
[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
20use Test::More; # last test to print
21
9f3849c3 22use FindBin qw($Bin);
6bceaca3 23use Path::Class;
24
25
9f3849c3 26use lib dir($Bin,'..', '..','lib')->stringify;
27use lib dir($Bin,'..', 'lib')->stringify;
28
6bceaca3 29
30
31BEGIN {
32 eval "use DBIx::Class::Admin";
33 plan skip_all => "Deps not installed: $@" if $@;
34}
35
36use_ok 'DBIx::Class::Admin';
9f3849c3 37
38
39done_testing;