[svn:parrot] r37614 - trunk/t/examples
jkeenan at svn.parrot.org
jkeenan at svn.parrot.org
Sat Mar 21 02:50:36 UTC 2009
Author: jkeenan
Date: Sat Mar 21 02:50:35 2009
New Revision: 37614
URL: https://trac.parrot.org/parrot/changeset/37614
Log:
Parrot::Test::Pod::new() needs a hash ref with an 'argv' key as its argument.
Modified:
trunk/t/examples/pod.t
Modified: trunk/t/examples/pod.t
==============================================================================
--- trunk/t/examples/pod.t Fri Mar 20 19:35:01 2009 (r37613)
+++ trunk/t/examples/pod.t Sat Mar 21 02:50:35 2009 (r37614)
@@ -16,7 +16,9 @@
my @files = @ARGV;
if (!@files) {
- my $podTester = Parrot::Test::Pod->new();
+ my $podTester = Parrot::Test::Pod->new( {
+ argv => [ @ARGV ],
+ } );
@files = @{$podTester->identify_files_for_POD_testing()};
}
More information about the parrot-commits
mailing list