Skip to content

Commit

Permalink
remove useless use of Test::Deep in tests
Browse files Browse the repository at this point in the history
don't need to use Test::Deep if we are not going to use its functions

this patch was sourced from the fedora perl-devel mailing list[1],
in which i see more patches for CGI - fedora perl-devel people: if
you're going to patch modules then please send those patches upstream
where relevant. many perl modules are now on github (including this
one) so it's easy, and it prevents alternate versions of modules
that could lead to frustrating debugging sessions because *your*
version of FCGI (2.04) is different to what the *real* version of
FCGI (2.04) is[2].

bump to version 2.05 to go to CPAN

 * [1] https://lists.fedoraproject.org/pipermail/perl-devel
 * [2] the "real" version of FCGI being that available on CPAN
  • Loading branch information
leejo committed Dec 11, 2014
1 parent 8f4abd5 commit 0cb4e6c
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
16 changes: 16 additions & 0 deletions Changes
@@ -1,5 +1,21 @@
Revision history for CGI::Fast

2.05 2014-12-11
[TESTING]
remove useless use of Test::Deep in tests

this patch was sourced from the fedora perl-devel mailing list[1],
in which i see more patches for CGI - fedora perl-devel people: if
you're going to patch modules then please send those patches upstream
where relevant. many perl modules are now on github (including this
one) so it's easy, and it prevents alternate versions of modules
that could lead to frustrating debugging sessions because *your*
version of FCGI (2.04) is different to what the *real* version of
FCGI (2.04) is[2].

* [1] https://lists.fedoraproject.org/pipermail/perl-devel
* [2] the "real" version of FCGI being that available on CPAN

2.04 2014-10-12
[TESTING]
- Fix tests for recent version of CGI (v4.05+), which removed the
Expand Down
2 changes: 1 addition & 1 deletion lib/CGI/Fast.pm
Expand Up @@ -13,7 +13,7 @@ local $^W = 1;
# wish, but if you redistribute a modified version, please attach a note
# listing the modifications you have made.

$CGI::Fast::VERSION='2.04';
$CGI::Fast::VERSION='2.05';

use CGI;
use FCGI;
Expand Down
1 change: 0 additions & 1 deletion t/004_fcgi_file_handles.t
Expand Up @@ -4,7 +4,6 @@ use strict;
use warnings;

use Test::More tests => 4;
use Test::Deep;

use CGI::Fast;

Expand Down
1 change: 0 additions & 1 deletion t/005_no_file_handles.t
Expand Up @@ -4,7 +4,6 @@ use strict;
use warnings;

use Test::More tests => 4;
use Test::Deep;

use CGI::Fast;

Expand Down

0 comments on commit 0cb4e6c

Please sign in to comment.