fix bogus tests
[dbsrgits/DBIx-Class-Journal.git] / Makefile.PL
1 use inc::Module::Install 0.89;
2 use strict;
3 use warnings;
4
5 use 5.008001;
6
7 # ****** DO NOT ADD OPTIONAL DEPENDENCIES. EVER. --mst ******
8
9 name     'DBIx-Class-Journal';
10 perl_version '5.008001';
11 all_from 'lib/DBIx/Class/Journal.pm';
12
13
14 test_requires 'Test::More'          => '0.94';
15 test_requires 'DBD::SQLite'         => '1.29';
16 test_requires 'SQL::Translator'     => '0.11003'; # we'll make this optional for release
17
18 requires 'DBIx::Class'              => '0.08115';
19 requires 'Class::C3::Componentised' => '1.0006';
20
21 tests_recursive ('t');
22
23 resources 'license'     => 'http://dev.perl.org/licenses/';
24 resources 'repository'  => 'http://dev.catalyst.perl.org/repos/bast/DBIx-Class-Journal/';
25
26 WriteAll();
27