1package Log::Log4perl::Internal::Test;
2use strict;
3use warnings;
4
5# We don't require any of these modules for testing, but if they're
6# installed, we require minimal versions.
7
8our %MINVERSION = qw(
9    DBI            1.607
10    DBD::CSV       0.33
11    SQL::Statement 1.20
12);
13
141;
15
16__END__
17
18=head1 NAME
19
20Log::Log4perl::Internal::Test - Internal Test Utilities for Log4perl
21
22=head1 SYNOPSIS
23
24    use Log::Log4perl::Internal::Test;
25
26=head1 DESCRIPTION
27
28Some general-purpose test routines and constants to be used in the Log4perl
29test suite.
30
31=head1 AUTHOR
32
33Please contribute patches to the project on Github:
34
35    http://github.com/mschilli/log4perl
36
37Send bug reports or requests for enhancements to the authors via our
38
39MAILING LIST (questions, bug reports, suggestions/patches):
40log4perl-devel@lists.sourceforge.net
41
42Authors (please contact them via the list above, not directly):
43Mike Schilli <m@perlmeister.com>,
44Kevin Goess <cpan@goess.org>
45
46Contributors (in alphabetical order):
47Ateeq Altaf, Cory Bennett, Jens Berthold, Jeremy Bopp, Hutton
48Davidson, Chris R. Donnelly, Matisse Enzer, Hugh Esco, Anthony
49Foiani, James FitzGibbon, Carl Franks, Dennis Gregorovic, Andy
50Grundman, Paul Harrington, David Hull, Robert Jacobson, Jason Kohles,
51Jeff Macdonald, Markus Peter, Brett Rann, Peter Rabbitson, Erik
52Selberg, Aaron Straup Cope, Lars Thegler, David Viner, Mac Yang.
53
54=head1 LICENSE
55
56Copyright 2002-2012 by Mike Schilli E<lt>m@perlmeister.comE<gt>
57and Kevin Goess E<lt>cpan@goess.orgE<gt>.
58
59This library is free software; you can redistribute it and/or modify
60it under the same terms as Perl itself.
61
62