Modified:
trunk/Changes
trunk/Makefile.PL
Log:
added a test for "pirl -v" and additional test prereqs: IPC::Cmd and Test::Deep
Modified: trunk/Changes
==============================================================================
--- trunk/Changes (original)
+++ trunk/Changes Sun Mar 9 09:45:42 2008
@@ -1,9 +1,13 @@
Revision history for Perl extension Shell::Perl.
0.017 Mar 9, 2008
+ - assume this is not supposed to work for Perls
+ under 5.6.0
- cope with noisy 5.6 blib at t/20expect_quit.t
(illustrated by test report http://www.nntp.perl.org/group/perl.cpan.testers/2008/03/msg1099937.html)
- - implement --version option ?!
+ - pirl now accepts switches --version and -v
+ - added IPC::Cmd and Test::Deep as prerequisites
+ for testing
0.016 Mar 3, 2008
- quit is now a method
Modified: trunk/Makefile.PL
==============================================================================
--- trunk/Makefile.PL (original)
+++ trunk/Makefile.PL Sun Mar 9 09:45:42 2008
@@ -1,5 +1,5 @@
-use 5;
+use 5.006;
use ExtUtils::MakeMaker;
my $EUMM_VERSION = eval $ExtUtils::MakeMaker::VERSION;
@@ -17,7 +17,10 @@
File::HomeDir => 0,
Path::Class => 0,
- Test::More => 0,
+ # test requires
+ 'Test::More' => 0,
+ 'Test::Deep' => 0,
+ 'IPC::Cmd' => 0,
},
EXE_FILES => [ 'bin/pirl' ],