Recommenced testing of DATA filehandle
[dbsrgits/DBM-Deep.git] / Build.PL
CommitLineData
ffed8b01 1use Module::Build;
2
3use strict;
4
5my $build = Module::Build->new(
6 module_name => 'DBM::Deep',
7 license => 'perl',
8 requires => {
e06824f8 9 perl => '5.6.0',
ffed8b01 10 'Digest::MD5' => '1.00',
d0c365a5 11 'Fcntl' => '0.01',
3b636d6a 12 'Scalar::Util' => '1.14',
ffed8b01 13 },
14 optional => {
15 },
16 build_requires => {
d0c365a5 17 'File::Path' => '0.01',
18 'File::Temp' => '0.01',
0236a909 19 'Test::Class' => '0.01',
ffed8b01 20 'Test::More' => '0.47',
21 'Test::Exception' => '0.21',
22 },
23 create_makefile_pl => 'traditional',
24 add_to_cleanup => [
070158df 25 'META.yml', '*.bak', '*.gz', 'Makefile.PL', 't/test*.db', 'cover_db'
ffed8b01 26 ],
2ec46b24 27 test_files => 't/??_*.t',
ffed8b01 28);
29
30$build->create_build_script;
31