]> git.vpit.fr Git - perl/modules/Scalar-Vec-Util.git/commitdiff
Importing Scalar-Vec-Util-0.05.tar.gz v0.05
authorVincent Pit <vince@profvince.com>
Sun, 29 Jun 2008 16:15:15 +0000 (18:15 +0200)
committerVincent Pit <vince@profvince.com>
Sun, 29 Jun 2008 16:15:15 +0000 (18:15 +0200)
Changes
META.yml
README
lib/Scalar/Vec/Util.pm
t/02-pp.t

diff --git a/Changes b/Changes
index 86b2bc483f68d0c445c6bacbd49421a457c5f596..dcd2e95a1a03f35799c7178a7c252d1576232bdd 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Scalar-Vec-Util
 
+0.05    2008-06-03 11:40 UTC
+        + Fix : make cover choked on t/02-pp.t.
+
 0.04    2008-06-02 20:40 UTC
         + Doc : More benchmarks.
         + Fix : t/02-pp.t failed when the tested version was already installed.
index 7e6ccba282b56b34ac5ab11d1d7f8bd84709a1da..57abb8fd0b3c73ca395048773d1520094a7fd449 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -1,11 +1,11 @@
 --- #YAML:1.0
 name:                Scalar-Vec-Util
-version:             0.04
+version:             0.05
 abstract:            Utility routines for vec strings.
 license:             perl
 author:              
     - Vincent Pit <perl@profvince.com>
-generated_by:        ExtUtils::MakeMaker version 6.42
+generated_by:        ExtUtils::MakeMaker version 6.44
 distribution_type:   module
 requires:     
     Carp:                          0
diff --git a/README b/README
index aecc0ad616070cc6475d289e7fa15f966b8cfb79..f466c4d27c94dc7465d2b0ad8488f59d560caf07 100644 (file)
--- a/README
+++ b/README
@@ -2,7 +2,7 @@ NAME
     Scalar::Vec::Util - Utility routines for vec strings.
 
 VERSION
-    Version 0.04
+    Version 0.05
 
 SYNOPSIS
         use Scalar::Vec::Util qw/vfill vcopy veq/;
index 4f69d8fd1d930c524362dbb8c2c51ad613be4632..75b903db363ec77ea15d2ee25f8bcbcefbbb5ff7 100644 (file)
@@ -11,13 +11,13 @@ Scalar::Vec::Util - Utility routines for vec strings.
 
 =head1 VERSION
 
-Version 0.04
+Version 0.05
 
 =cut
 
 our $VERSION;
 BEGIN {
- $VERSION = '0.04';
+ $VERSION = '0.05';
  eval {
   require XSLoader;
   XSLoader::load(__PACKAGE__, $VERSION);
index c4df852a313e560d01f021fe70bd7c8d68704c69..a4d5f0faf6443aa062e4d5e64e4467b677acac30 100644 (file)
--- a/t/02-pp.t
+++ b/t/02-pp.t
@@ -11,9 +11,12 @@ BEGIN {
  my $re = join '|',
            grep defined && length,
             @Config{qw/myarchname archname/}, 'arch';
- @INC = grep !/(?:$re)$/, @INC
+ my @inc = @INC;
+ @INC = grep !/(?:$re)$/, @INC;
+ require Scalar::Vec::Util;
+ Scalar::Vec::Util->import(qw/vfill vcopy veq SVU_PP/);
+ @INC = @inc;
 }
-use Scalar::Vec::Util qw/vfill vcopy veq SVU_PP/;
 
 is(SVU_PP, 1, 'using pure perl subroutines');
 for (qw/vfill vcopy veq/) {