Commit | Line | Data |
---|---|---|
6f9458e4 | 1 | use inc::Module::Install 1.0; |
d4705371 | 2 | use strict; |
3 | use warnings; | |
4 | ||
75151f36 | 5 | use 5.006002; |
d4705371 | 6 | |
75151f36 | 7 | perl_version '5.006002'; |
d4705371 | 8 | name 'SQL-Abstract'; |
4f0516bc | 9 | author 'Nathan Wiger <nate@wiger.org>'; |
d4705371 | 10 | |
11 | all_from 'lib/SQL/Abstract.pm'; | |
12 | ||
fdfbbc65 | 13 | requires 'List::Util' => 0; |
14 | requires 'Scalar::Util' => 0; | |
0bf60a86 | 15 | requires 'Class::Accessor::Grouped' => 0.09005; |
d4705371 | 16 | |
0bf60a86 | 17 | test_requires "Test::More" => 0.92; |
d4705371 | 18 | test_requires "Test::Exception" => 0; |
19 | test_requires "Test::Warn" => 0; | |
75151f36 | 20 | test_requires "Storable" => 0; # for cloning in tests |
d4705371 | 21 | |
0d5df7d6 | 22 | no_index package => 'DBIx::Class::Storage::Debug::PrettyPrint'; |
1dc93d17 | 23 | no_index directory => 'examples'; |
24 | ||
d4705371 | 25 | tests_recursive 't'; |
26 | ||
27 | WriteAll(); |