all tests pass and impl actually makes sense
[dbsrgits/SQL-Abstract.git] / Makefile.PL
1 use inc::Module::Install 1.0;
2 use strict;
3 use warnings;
4
5 use 5.006002;
6
7 perl_version '5.006002';
8 name 'SQL-Abstract';
9 author 'Nathan Wiger <nate@wiger.org>';
10 resources 'license'     => 'http://dev.perl.org/licenses/';
11 resources 'repository'  => 'git://git.shadowcat.co.uk/dbsrgits/SQL-Abstract.git';
12 resources 'bugtracker'  => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=SQL-Abstract';
13
14 all_from 'lib/SQL/Abstract.pm';
15
16 requires 'List::Util'   => 0;
17 requires 'Scalar::Util' => 0;
18 requires 'Class::Accessor::Grouped' => 0.10002;
19 requires 'Getopt::Long::Descriptive' => 0.086;
20 requires 'Hash::Merge' => 0.12;
21
22 test_requires "Test::More"      => 0.92;
23 test_requires "Test::Deep"      => 0.106;
24 test_requires "Test::Exception" => 0;
25 test_requires "Test::Warn"      => 0;
26 test_requires "Storable"        => 0;   # for cloning in tests
27
28 no_index package => 'DBIx::Class::Storage::Debug::PrettyPrint';
29 no_index directory => 'examples';
30
31 install_script 'format-sql';
32
33 tests_recursive 't';
34
35 auto_install();
36
37 WriteAll();