r75326 - in /trunk/libtest-spec-perl: Changes META.yml debian/changelog debian/patches/fix-mocks_imports-test.patch debian/patches/series 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:45:25 UTC 2011


Author: ghedo-guest
Date: Fri Jun 10 08:45:10 2011
New Revision: 75326

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=75326
Log:
new upstream release

Removed:
    trunk/libtest-spec-perl/debian/patches/fix-mocks_imports-test.patch
Modified:
    trunk/libtest-spec-perl/Changes
    trunk/libtest-spec-perl/META.yml
    trunk/libtest-spec-perl/debian/changelog
    trunk/libtest-spec-perl/debian/patches/series
    trunk/libtest-spec-perl/lib/Test/Spec.pm
    trunk/libtest-spec-perl/t/mocks_imports.t

Modified: trunk/libtest-spec-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-spec-perl/Changes?rev=75326&op=diff
==============================================================================
--- trunk/libtest-spec-perl/Changes (original)
+++ trunk/libtest-spec-perl/Changes Fri Jun 10 08:45:10 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: trunk/libtest-spec-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-spec-perl/META.yml?rev=75326&op=diff
==============================================================================
--- trunk/libtest-spec-perl/META.yml (original)
+++ trunk/libtest-spec-perl/META.yml Fri Jun 10 08:45:10 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: trunk/libtest-spec-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-spec-perl/debian/changelog?rev=75326&op=diff
==============================================================================
--- trunk/libtest-spec-perl/debian/changelog (original)
+++ trunk/libtest-spec-perl/debian/changelog Fri Jun 10 08:45:10 2011
@@ -1,4 +1,4 @@
-libtest-spec-perl (0.31-1) UNRELEASED; urgency=low
+libtest-spec-perl (0.32-1) UNRELEASED; urgency=low
 
   * Initial Release. (Closes: #629642)
 

Modified: trunk/libtest-spec-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-spec-perl/debian/patches/series?rev=75326&op=diff
==============================================================================
--- trunk/libtest-spec-perl/debian/patches/series (original)
+++ trunk/libtest-spec-perl/debian/patches/series Fri Jun 10 08:45:10 2011
@@ -1,2 +1,1 @@
 fix-pod-error.patch
-fix-mocks_imports-test.patch

Modified: trunk/libtest-spec-perl/lib/Test/Spec.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-spec-perl/lib/Test/Spec.pm?rev=75326&op=diff
==============================================================================
--- trunk/libtest-spec-perl/lib/Test/Spec.pm (original)
+++ trunk/libtest-spec-perl/lib/Test/Spec.pm Fri Jun 10 08:45:10 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: trunk/libtest-spec-perl/t/mocks_imports.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtest-spec-perl/t/mocks_imports.t?rev=75326&op=diff
==============================================================================
--- trunk/libtest-spec-perl/t/mocks_imports.t (original)
+++ trunk/libtest-spec-perl/t/mocks_imports.t Fri Jun 10 08:45:10 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