Switch some tests to explicit parenthesis comparison
[dbsrgits/SQL-Abstract.git] / Makefile.PL
CommitLineData
d4705371 1use inc::Module::Install 0.79;
2use strict;
3use warnings;
4
5use 5.006001;
6
7perl_version '5.006001';
8name 'SQL-Abstract';
4f0516bc 9author 'Nathan Wiger <nate@wiger.org>';
d4705371 10
11all_from 'lib/SQL/Abstract.pm';
12
13requires "List::Util" => 0;
14requires "Scalar::Util" => 0;
15
16test_requires "Test::Builder" => 0;
17test_requires "Test::Deep" => 0;
18test_requires "Test::More" => 0;
19test_requires "Test::Exception" => 0;
20test_requires "Test::Warn" => 0;
21
22tests_recursive 't';
23
24WriteAll();