r75324 - in /branches/upstream/libtest-spec-perl/current: Changes META.yml lib/Test/Spec.pm t/mocks_imports.t

ghedo-guest at users.alioth.debian.org ghedo-guest at users.alioth.debian.org
Fri Jun 10 08:41:51 UTC 2011


Author: ghedo-guest
Date: Fri Jun 10 08:41:17 2011
New Revision: 75324

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=75324
Log:
[svn-upgrade] new version libtest-spec-perl (0.32)

Modified:
    branches/upstream/libtest-spec-perl/current/Changes
    branches/upstream/libtest-spec-perl/current/META.yml
    branches/upstream/libtest-spec-perl/current/lib/Test/Spec.pm
    branches/upstream/libtest-spec-perl/current/t/mocks_imports.t

Modified: branches/upstream/libtest-spec-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-spec-perl/current/Changes?rev=75324&op=diff
==============================================================================
--- branches/upstream/libtest-spec-perl/current/Changes (original)
+++ branches/upstream/libtest-spec-perl/current/Changes Fri Jun 10 08:41:17 2011
@@ -1,4 +1,8 @@
 Revision history for Perl extension Test::Spec.
+
+0.32 Thu Jun  9 16:09:55 UTC 2011
+  - Fixed a problem with the tests that occurred only when
+    Package::Stash::XS was not installed (issue #8).
 
 0.31
   - "use Test::Spec" now enables strict and warnings in the calling

Modified: branches/upstream/libtest-spec-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-spec-perl/current/META.yml?rev=75324&op=diff
==============================================================================
--- branches/upstream/libtest-spec-perl/current/META.yml (original)
+++ branches/upstream/libtest-spec-perl/current/META.yml Fri Jun 10 08:41:17 2011
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Test-Spec
-version:            0.31
+version:            0.32
 abstract:           Write tests in a declarative specification style
 author:
     - Philip Garrett <philip.garrett at icainformatics.com>
@@ -25,7 +25,7 @@
     directory:
         - t
         - inc
-generated_by:       ExtUtils::MakeMaker version 6.54
+generated_by:       ExtUtils::MakeMaker version 6.56
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4

Modified: branches/upstream/libtest-spec-perl/current/lib/Test/Spec.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-spec-perl/current/lib/Test/Spec.pm?rev=75324&op=diff
==============================================================================
--- branches/upstream/libtest-spec-perl/current/lib/Test/Spec.pm (original)
+++ branches/upstream/libtest-spec-perl/current/lib/Test/Spec.pm Fri Jun 10 08:41:17 2011
@@ -3,7 +3,7 @@
 use warnings;
 use Test::Trap ();        # load as early as possible to override CORE::exit
 
-our $VERSION = '0.31';
+our $VERSION = '0.32';
 
 use base qw(Exporter);
 

Modified: branches/upstream/libtest-spec-perl/current/t/mocks_imports.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libtest-spec-perl/current/t/mocks_imports.t?rev=75324&op=diff
==============================================================================
--- branches/upstream/libtest-spec-perl/current/t/mocks_imports.t (original)
+++ branches/upstream/libtest-spec-perl/current/t/mocks_imports.t Fri Jun 10 08:41:17 2011
@@ -31,7 +31,7 @@
       package A;
       require Test::Spec::Mocks;
     }
-    ok(!defined(&UNIVERSAL::stubs) && !defined(&A::stubs));
+    ok(!defined(&{"UNIVERSAL::stubs"}) && !defined(&{"A::stubs"}));
   };
 
   it "should export &stubs into UNIVERSAL" => sub {




More information about the Pkg-perl-cvs-commits mailing list