8d99a662321f96a309c13b4a63de94299dc4fc2b
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / 02pod.t
1 #!perl
2
3 use strict;
4 use warnings;
5
6 use Test::More;
7
8 BEGIN {
9     use DBIx::Class::Schema::Loader::Optional::Dependencies ();
10     if (DBIx::Class::Schema::Loader::Optional::Dependencies->req_ok_for('test_pod')) {
11         Test::Pod->import;
12     }
13     else {
14         plan skip_all => 'Tests needs ' . DBIx::Class::Schema::Loader::Optional::Dependencies->req_missing_for('test_pod')
15     }
16 }
17
18 all_pod_files_ok();
19
20 # vim:tw=0 sw=4 et sts=4: