[svn:parrot] r47888 - in trunk: lib/Parrot t/tools

petdance at svn.parrot.org petdance at svn.parrot.org
Sun Jun 27 03:50:52 UTC 2010


Author: petdance
Date: Sun Jun 27 03:50:51 2010
New Revision: 47888
URL: https://trac.parrot.org/parrot/changeset/47888

Log:
move the use of IO::File into Parrot::Test instead of the calling program

Modified:
   trunk/lib/Parrot/Test.pm
   trunk/t/tools/pbc_dump.t

Modified: trunk/lib/Parrot/Test.pm
==============================================================================
--- trunk/lib/Parrot/Test.pm	Sun Jun 27 03:50:08 2010	(r47887)
+++ trunk/lib/Parrot/Test.pm	Sun Jun 27 03:50:51 2010	(r47888)
@@ -280,6 +280,7 @@
 use File::Spec;
 use File::Basename;
 use Memoize ();
+use IO::File ();
 
 use lib qw( lib );
 use Parrot::BuildUtil ();

Modified: trunk/t/tools/pbc_dump.t
==============================================================================
--- trunk/t/tools/pbc_dump.t	Sun Jun 27 03:50:08 2010	(r47887)
+++ trunk/t/tools/pbc_dump.t	Sun Jun 27 03:50:51 2010	(r47888)
@@ -1,5 +1,5 @@
 #! perl
-# Copyright (C) 2009, Parrot Foundation.
+# Copyright (C) 2009-2010, Parrot Foundation.
 # $Id$
 
 =head1 NAME
@@ -32,7 +32,6 @@
 use lib qw(lib);
 
 use Test::More;
-use IO::File ();
 use Parrot::Config;
 use Parrot::Test;
 use File::Spec;


More information about the parrot-commits mailing list